-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.eslintrc
42 lines (42 loc) · 929 Bytes
/
.eslintrc
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
41
42
{
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb-base",
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"prettier",
"@typescript-eslint"
],
"env": {
"node": true,
"browser": true
},
"rules": {
"no-plusplus": "off",
"no-param-reassign": "off",
"class-methods-use-this": "off",
"prettier/prettier": [
"error"
],
"import/prefer-default-export": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"no-restricted-syntax": "off",
"lines-between-class-members": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"stories/**/*",
"**/*.spec.js",
"rollup.config.js"
]
}
]
}
}