-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
41 lines (41 loc) · 1.64 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 = {
extends: ['eslint:recommended', 'google'],
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
allowImportExportEverywhere: true,
},
env: {
browser: true,
node: true,
},
overrides: [
{
env: {
node: true,
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script',
},
},
],
ignorePatterns: ['*.precompiled.js', '**/handlebars/*.js', 'webpack.config.js', 'public/build/*'],
rules: {
'max-len': ['error', {code: 120}],
'camelcase': ['error', {ignoreDestructuring: true}],
'semi': ['error', 'always'], // точки с запятой
'eol-last': ['error', 'always'], // Пустая строка в конце файла
'quotes': ['error', 'single'], // Одинарные кавычки
'no-unused-vars': 'off', // Запрет неиспользуемых переменных
'no-undef': 'error', // Запрет использования необъявленных переменных
'no-trailing-spaces': 'error', // Запрет завершающих пробелов
'no-var': 'error', // Запрет использования var
'prefer-const': 'error', // Предпочтение const
'no-tabs': 'error', // Запрет использования табуляции
'newline-before-return': 'error', // Перенос строки перед return
'no-irregular-whitespace': 'error', // Запрет неправильных пробелов
'no-multi-spaces': 'error', // Запрет множественных пробелов
'no-case-declarations': 'off',
},
};