-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (41 loc) · 1.36 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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'indent': ['warn', 4],
'quotes': ['warn', 'single'],
'space-before-function-paren': ['warn', 'always'],
'curly': ['warn', 'all'],
'array-bracket-newline': ['warn', {'multiline': true}],
'eol-last': ['warn'],
'arrow-spacing': 'warn',
'comma-dangle': ['warn', 'always-multiline'],
'function-call-argument-newline': ['warn', 'consistent'],
'function-paren-newline': ['warn', 'multiline'],
'multiline-ternary': ['warn', 'always'],
'no-multi-spaces': ['warn'],
'no-multiple-empty-lines': ['warn', {'max': 1}],
'no-trailing-spaces': ['warn'],
'no-whitespace-before-property': ['warn'],
'object-curly-newline': ['warn', {'consistent': true}],
'operator-linebreak': ['warn', 'before'],
'padded-blocks': ['warn', 'never'],
'@typescript-eslint/no-var-requires': 0,
'padding-line-between-statements': [
'warn', {
blankLine: 'always',
prev: '*',
next: 'return',
},
],
},
ignorePatterns: [
'*.js',
'test/*',
],
};