UNPKG

patchwork-mapconverter

Version:

Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator

42 lines (41 loc) 1.14 kB
{ "env": { "node": true, "browser": true, "es2021": true }, "extends": [ "standard-with-typescript" ], "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "overrides": [ { "env": { "node": true }, "files": [ "*.ts", "*.tsx" ], "parserOptions": { "sourceType": "script" }, "extends": [ "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking" ] } ], "parserOptions": { "ecmaVersion": "latest", "sourceType": "module", "project":"tsconfig.json" }, "rules": { "@typescript-eslint/restrict-template-expressions": "error", "no-empty-function": "off", "@typescript-eslint/no-empty-function": ["error", {"allow": ["private-constructors"] }], "@typescript-eslint/no-unused-vars": ["off"] } }