forked from siemens/ngx-datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
39 lines (39 loc) · 850 Bytes
/
.eslintrc.js
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
module.exports = {
root: true,
overrides: [
{
files: ['*.ts'],
parserOptions: {
project: [
'tsconfig.json',
'tsconfig.app.json',
'tsconfig.spec.json',
'cypress/tsconfig.json'
],
tsconfigRootDir: __dirname
},
extends: ['./eslint-config-angular-typescript-base.json'],
rules: {
'@angular-eslint/directive-selector': [
'error',
{
'type': 'attribute',
'style': 'camelCase'
}
],
'@angular-eslint/component-selector': [
'error',
{
'type': 'element',
'style': 'kebab-case'
}
]
}
},
{
files: ['*.html'],
extends: ['./eslint-config-angular-template-base.json'],
rules: {}
}
]
};