-
Notifications
You must be signed in to change notification settings - Fork 287
/
.eslintrc.json
30 lines (30 loc) · 967 Bytes
/
.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
{
"root": true,
"extends": ["@swimlane", "prettier"],
"overrides": [
{
"files": ["*.ts"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
},
"extends": [
"@swimlane/eslint-config/typescript",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@angular-eslint/directive-class-suffix": "off",
"@angular-eslint/component-class-suffix": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@angular-eslint/no-input-rename": "off",
"@angular-eslint/no-output-native": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/no-duplicate-enum-values": "off"
}
}
]
}