-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
.eslintrc.cjs
40 lines (40 loc) · 1.18 KB
/
.eslintrc.cjs
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
module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
requireConfigFile: false,
},
ignorePatterns: ['ui', 'node_modules', 'misc', 'interface', 'test.js'],
plugins: ['@babel', 'jest', 'prettier', 'unicorn'],
extends: [
'eslint:recommended',
'plugin:jest/recommended',
'plugin:jest/style',
'plugin:prettier/recommended',
'plugin:unicorn/recommended',
],
root: true,
env: {
es2021: true,
node: true,
jest: true,
},
rules: {
quotes: ['error', 'single'],
'comma-dangle': ['error', 'only-multiline'],
'no-multiple-empty-lines': ['warn', { max: 1, maxEOF: 0 }],
'eol-last': ['error', 'always'],
'space-before-function-paren': ['error', { named: 'never' }],
'prettier/prettier': ['error'],
'unicorn/filename-case': 'off',
'unicorn/numeric-separators-style': 'off',
'unicorn/no-null': 'off',
'unicorn/no-nested-ternary': 'off',
'unicorn/prefer-module': 'off',
'unicorn/no-static-only-class': 'off',
'unicorn/prefer-node-protocol': 'off',
'unicorn/consistent-destructuring': 'off',
'unicorn/no-await-expression-member': 'off',
},
};