-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
40 lines (40 loc) · 1.04 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* eslint-env node */
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
"ecmaVersion": 12,
"sourceType": "module"
},
plugins: [
"@typescript-eslint",
"unused-imports"
],
env: {
browser: true
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
rules: {
"@typescript-eslint/no-var-requires": ["warn"],
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
"@typescript-eslint/no-this-alias": ["off"],
semi: ["warn", "never"],
quotes: ["warn", "double"],
"comma-dangle": ["warn", "never"],
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
]
},
"ignorePatterns": ["*_prod.js", "*.config.js", "dist", "Beam/Classes/Components/Readability/Readability.js"]
}