-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
102 lines (102 loc) · 3.75 KB
/
.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
module.exports = {
root: true,
ignorePatterns: ['projects/**/*'],
overrides: [
{
files: ['*.ts'],
parserOptions: {
project: ['tsconfig.json', 'e2e/tsconfig.json'],
createDefaultProgram: true,
},
plugins: ['eslint-plugin-header', 'deprecation'],
extends: [
'plugin:@angular-eslint/ng-cli-compat',
'plugin:@angular-eslint/ng-cli-compat--formatting-add-on',
'plugin:@angular-eslint/template/process-inline-templates',
],
rules: {
'header/header': [
'error',
'block',
[
'!',
{
pattern: '[ *]* Copyright \\d{4}(-\\d{4})? VMware, Inc.',
template: ' * Copyright 2021 VMware, Inc.',
},
' * SPDX-License-Identifier: BSD-2-Clause',
' ',
],
],
'@angular-eslint/component-selector': [
'error',
{
type: 'element',
prefix: 'vcd',
style: 'kebab-case',
},
],
'@angular-eslint/directive-selector': [
'error',
{
type: 'attribute',
prefix: 'vcd',
style: 'camelCase',
},
],
'@typescript-eslint/adjacent-overload-signatures': 'off',
'@typescript-eslint/explicit-member-accessibility': [
'off',
{
accessibility: 'explicit',
},
],
'@typescript-eslint/no-inferrable-types': [
'off',
{
ignoreParameters: true,
},
],
'@typescript-eslint/prefer-function-type': 'off',
'arrow-parens': ['off', 'always'],
'import/order': 'error',
'max-len': [
'off',
{
code: 140,
},
],
'no-bitwise': 'off',
'no-multiple-empty-lines': 'error',
'no-new-func': 'error',
'no-octal': 'error',
'no-octal-escape': 'error',
'no-underscore-dangle': 'off',
'arrow-body-style': 'off',
'@typescript-eslint/naming-convention': 'off',
'jsdoc/newline-after-description': 'off',
'@typescript-eslint/member-ordering': [
'error',
{
default: ['static-field', 'instance-field', 'static-method', 'instance-method'],
},
],
'prefer-arrow/prefer-arrow-functions': 'off',
'@typescript-eslint/ban-types': 'off',
'space-before-function-paren': 'off',
'id-blacklist': 'off',
'@angular-eslint/no-input-rename': 'off',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'no-delete-var': 'error',
'no-restricted-syntax': ['error', 'document.domain', 'exec'],
'deprecation/deprecation': 'warn',
},
},
{
files: ['*.html'],
extends: ['plugin:@angular-eslint/template/recommended'],
rules: {},
},
],
};