forked from seydx/homebridge-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
31 lines (31 loc) · 794 Bytes
/
.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
module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
requireConfigFile: false,
},
ignorePatterns: ['homebridge-ui', 'node_modules', 'demo'],
plugins: ['@babel', 'prettier'],
extends: ['eslint:recommended', 'plugin:prettier/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': [
'warn',
{
singleQuote: true,
arrowParens: 'always',
printWidth: 120,
},
],
},
};