-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy patheslint.config.js
More file actions
128 lines (127 loc) · 3.39 KB
/
eslint.config.js
File metadata and controls
128 lines (127 loc) · 3.39 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// @ts-check
const tsParser = require('@typescript-eslint/parser');
const tsPlugin = require('@typescript-eslint/eslint-plugin');
const globals = require('globals');
/** @type {import('eslint').Linter.Config[]} */
module.exports = [
{
ignores: [
'**/typings/*.d.ts',
'scripts/**/*',
'examples/**/*',
],
},
{
files: ['src/**/*.ts'],
languageOptions: {
parser: tsParser,
parserOptions: {
project: 'src/tsconfig.json',
sourceType: 'module',
},
globals: {
...globals.browser,
...globals.es2015,
...globals.node,
},
},
plugins: {
'@typescript-eslint': tsPlugin,
},
rules: {
'@typescript-eslint/array-type': [
'error',
{
default: 'array-simple',
readonly: 'generic',
},
],
'@typescript-eslint/consistent-type-definitions': 'error',
'@typescript-eslint/explicit-function-return-type': [
'error',
{
'allowExpressions': true,
},
],
'@typescript-eslint/naming-convention': [
'error',
{ 'selector': 'default', 'format': ['camelCase'] },
// variableLike
{ 'selector': 'variable', 'format': ['camelCase', 'UPPER_CASE'] },
{ 'selector': 'variable', 'filter': '^I.+Service$', 'format': ['PascalCase'], 'prefix': ['I'] },
// memberLike
{ 'selector': 'memberLike', 'modifiers': ['private'], 'format': ['camelCase'], 'leadingUnderscore': 'require' },
{ 'selector': 'memberLike', 'modifiers': ['protected'], 'format': ['camelCase'], 'leadingUnderscore': 'require' },
{ 'selector': 'enumMember', 'format': ['UPPER_CASE'] },
// memberLike - Allow enum-like objects to use UPPER_CASE
{ 'selector': 'property', 'modifiers': ['public'], 'format': ['camelCase', 'UPPER_CASE'] },
{ 'selector': 'method', 'modifiers': ['public'], 'format': ['camelCase', 'UPPER_CASE'] },
// typeLike
{ 'selector': 'typeLike', 'format': ['PascalCase'] },
{ 'selector': 'interface', 'format': ['PascalCase'], 'prefix': ['I'] },
],
'@typescript-eslint/prefer-namespace-keyword': 'error',
'comma-dangle': [
'error',
{
'objects': 'never',
'arrays': 'never',
'functions': 'never',
},
],
'curly': [
'error',
'multi-line',
],
'eol-last': 'error',
'eqeqeq': [
'error',
'always',
],
'keyword-spacing': 'error',
'new-parens': 'error',
'no-duplicate-imports': 'error',
'no-else-return': [
'error',
{
allowElseIf: false,
},
],
'no-eval': 'error',
'no-irregular-whitespace': 'error',
'no-restricted-imports': [
'error',
{
'patterns': [
'.*\\/out\\/.*',
],
},
],
'no-trailing-spaces': 'error',
'no-unsafe-finally': 'error',
'no-var': 'error',
'one-var': [
'error',
'never',
],
'prefer-const': 'error',
'quotes': [
'error',
'single',
{ 'allowTemplateLiterals': true },
],
'semi': [
'error',
'always',
],
'spaced-comment': [
'error',
'always',
{
'markers': ['/'],
'exceptions': ['-'],
},
],
},
},
];