-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
111 lines (111 loc) · 2.19 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
103
104
105
106
107
108
109
110
111
module.exports = {
root: true,
env: {
es6: true,
jest: true,
node: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
experimentalObjectRestSpread: true,
warnOnUnsupportedTypeScriptVersion: false,
},
ecmaVersion: 7,
sourceType: 'module',
},
plugins: ['import', 'prettierx', '@typescript-eslint'],
settings: {
prettierx: {
usePrettierrc: false,
},
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/typescript',
'plugin:import/warnings',
'plugin:prettierx/@typescript-eslint',
'plugin:prettierx/standardx',
'plugin:you-dont-need-momentjs/recommended',
],
rules: {
'prettierx/options': [
2,
{
alignObjectProperties: false,
semi: true,
singleQuote: true,
spaceBeforeFunctionParen: true,
trailingComma: 'all',
useTabs: true,
},
],
'linebreak-style': 'off',
'no-console': 'off',
'no-constant-condition': 'off',
'no-unused-vars': [
'warn',
{
varsIgnorePattern: 'UU',
args: 'none',
},
],
quotes: 'off',
'import/named': 2,
'import/order': [
'error',
{
alphabetize: { caseInsensitive: true, order: 'asc' },
'newlines-between': 'always',
},
],
'one-var': ['error', 'never'],
'no-var': 'error',
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: '*',
next: 'return',
},
{
blankLine: 'always',
prev: ['const', 'let', 'var'],
next: '*',
},
{
blankLine: 'any',
prev: ['const', 'let', 'var'],
next: ['const', 'let', 'var'],
},
{
blankLine: 'always',
prev: ['block', 'block-like', 'if'],
next: '*',
},
{
blankLine: 'always',
prev: '*',
next: ['block', 'block-like', 'if'],
},
{
blankLine: 'any',
prev: 'export',
next: '*',
},
{
blankLine: 'any',
prev: '*',
next: 'export',
},
],
'@typescript-eslint/indent': 'off',
'@typescript-eslint/prefer-interface': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/ban-ts-comment': 'warn',
'@typescript-eslint/explicit-function-return-type': 'error',
'prefer-template': 'error',
},
};