-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
34 lines (34 loc) · 829 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
32
33
34
module.exports = {
extends: 'eslint:recommended',
env: {
browser: true,
es2020: true,
},
globals: {
chrome: 'readonly', // for Chrome plugin
},
reportUnusedDisableDirectives: true,
ignorePatterns: ['build/', 'node_modules/'],
root: true,
rules: {
'indent': ['error', 2],
'keyword-spacing': 2,
'no-unused-vars': 'warn',
'quote-props': ['error', 'consistent-as-needed'],
'semi': 'warn',
'no-undef': 'error',
'no-global-assign': 'error',
'quotes': ['warn', 'single', { avoidEscape: true }],
'comma-dangle': ['error', 'only-multiline'],
'eqeqeq': ['error', 'always'],
'no-unused-expressions': [
'warn',
{
allowTaggedTemplates: true,
allowTernary: true,
allowShortCircuit: true,
},
],
'no-console': 0,
},
};