-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy patheslint.config.js
More file actions
76 lines (75 loc) · 1.9 KB
/
eslint.config.js
File metadata and controls
76 lines (75 loc) · 1.9 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// @ts-check
const tsParser = require("@typescript-eslint/parser");
const tsPlugin = require("@typescript-eslint/eslint-plugin");
const angularPlugin = require("@angular-eslint/eslint-plugin");
const angularTemplatePlugin = require("@angular-eslint/eslint-plugin-template");
const angularTemplateParser = require("@angular-eslint/template-parser");
module.exports = [
{
ignores: [
"projects/**/*",
"src/environments/**/*",
"src/**/*.mock.ts",
"src/index.html",
],
},
{
files: ["**/*.ts"],
languageOptions: {
parser: tsParser,
parserOptions: {
project: ["tsconfig.spec.json", "src/tsconfig.app.json"],
createDefaultProgram: true,
},
globals: {
jest: true,
describe: true,
it: true,
expect: true,
beforeEach: true,
afterEach: true,
beforeAll: true,
afterAll: true,
},
},
plugins: {
"@angular-eslint": angularPlugin,
"@typescript-eslint": tsPlugin,
},
processor: angularTemplatePlugin.processors["extract-inline-html"],
rules: {
...angularPlugin.configs.recommended.rules,
"@angular-eslint/directive-selector": [
"error",
{
type: "attribute",
prefix: "app",
style: "camelCase",
},
],
"@angular-eslint/component-selector": [
"error",
{
type: "element",
prefix: "app",
style: "kebab-case",
},
],
"@angular-eslint/prefer-inject": "off",
"@angular-eslint/prefer-standalone": "off",
},
},
{
files: ["**/*.html"],
languageOptions: {
parser: angularTemplateParser,
},
plugins: {
"@angular-eslint/template": angularTemplatePlugin,
},
rules: {
...angularTemplatePlugin.configs.recommended.rules,
"@angular-eslint/template/prefer-control-flow": "off",
},
},
];