diff options
Diffstat (limited to 'extension/.eslintrc.json')
-rw-r--r-- | extension/.eslintrc.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extension/.eslintrc.json b/extension/.eslintrc.json new file mode 100644 index 00000000..5dfecab7 --- /dev/null +++ b/extension/.eslintrc.json @@ -0,0 +1,18 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module" + }, + "plugins": ["@typescript-eslint"], + "rules": { + "@typescript-eslint/naming-convention": "warn", + "@typescript-eslint/semi": "warn", + "curly": "warn", + "eqeqeq": "warn", + "no-throw-literal": "warn", + "semi": "off" + }, + "ignorePatterns": ["out", "dist", "**/*.d.ts"] +} |