-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
39 lines (35 loc) · 1.34 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
module.exports = {
env: {
es6: true,
browser: true,
node: true,
},
globals: {
db: false,
},
extends: ['airbnb', 'prettier'],
plugins: ['babel', 'import'],
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
},
rules: {
'linebreak-style': 'off', // Неправильно работает в Windows.
'operator-linebreak': ['error', 'after'],
'no-underscore-dangle': [2, { allow: ['_id'] }],
'no-console': 'off',
'arrow-parens': 'off', // Несовместимо с prettier
'object-curly-newline': 'off', // Несовместимо с prettier
'no-mixed-operators': 'off', // Несовместимо с prettier
'arrow-body-style': 'off', // Это - не наш стиль?
'function-paren-newline': 'off', // Несовместимо с prettier
'no-plusplus': 'off',
'space-before-function-paren': 0, // Несовместимо с prettier
'max-len': 'off', // airbnb позволяет некоторые пограничные случаи
'no-alert': 'error', // airbnb использует предупреждение
'no-param-reassign': 'off', // Это - не наш стиль?
radix: 'warn', // parseInt, parseFloat и radix выключены. Мне это не нравится.
'prefer-destructuring': 'off',
},
};