-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
33 lines (33 loc) · 1.04 KB
/
.eslintrc.json
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
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"athom"
],
"plugins": ["@typescript-eslint"],
"rules": {
"strict": "off",
"semi": "off",
"@typescript-eslint/semi": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/naming-convention": [
"error",
{ "selector": "class", "format": ["PascalCase"] },
{ "selector": "interface", "format": ["PascalCase"] },
{ "selector": "typeProperty", "format": ["camelCase"] }
],
"node/no-unsupported-features/es-syntax": ["error", { "ignores": ["modules"] }],
"no-console": "off",
"padded-blocks": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"node/no-missing-import": "off",
"implicit-arrow-linebreak": "off",
"function-paren-newline": "off",
"operator-linebreak": "off",
"no-multi-assign": "off",
"@typescript-eslint/no-empty-function": "off"
}
}