-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
32 lines (32 loc) · 919 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
{
"parser": "@typescript-eslint/parser",
"extends": ["@open-wc", "prettier"],
"plugins": ["@typescript-eslint"],
"rules": {
"no-unneeded-ternary": "off",
"prefer-destructuring": "off",
"camelcase": "off",
"no-empty-function": "off",
"no-param-reassign": "off",
"no-useless-constructor": "off",
"class-methods-use-this": "off",
"import/extensions": "off",
"no-return-assign": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"import/no-unresolved": "off",
"consistent-return": "off",
"default-case": "off",
"no-console": "off",
"import/no-duplicates": "off",
"no-case-declarations": "off",
"no-shadow": "off",
"no-alert": "off",
"prefer-template": "off",
"no-await-in-loop": "off",
"no-empty": "off",
"no-nested-ternary": "off",
"prefer-arrow-callback": "off",
"no-undef": "off"
}
}