-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
.eslintrc.cjs
31 lines (31 loc) · 996 Bytes
/
.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
module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
requireConfigFile: false,
},
ignorePatterns: ['homebridge-ui', 'node_modules'],
plugins: ['@babel', 'prettier', 'unicorn'],
extends: ['eslint:recommended', 'plugin:prettier/recommended', 'plugin:unicorn/recommended'],
root: true,
env: {
es2021: true,
node: 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/prefer-node-protocol': 'off',
'unicorn/no-await-expression-member': 'off',
},
};