-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
42 lines (41 loc) · 916 Bytes
/
index.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
42
'use strict';
module.exports = {
extends: [
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'prettier',
],
plugins: ['import', 'prettier'],
env: {
es6: true,
node: true,
jest: true,
},
parserOptions: {
ecmaVersion: 2017,
sourceType: 'script',
},
rules: {
'arrow-body-style': ['warn', 'as-needed'],
eqeqeq: ['warn', 'always', { null: 'ignore' }],
'import/no-unresolved': ['error', { commonjs: true }],
'lines-around-directive': 'error',
'no-console': 'off',
'no-else-return': 'warn',
'no-var': 'warn',
'no-useless-return': 'warn',
'prefer-arrow-callback': 'warn',
'prefer-const': 'warn',
'prefer-template': 'warn',
'prettier/prettier': [
'warn',
{
singleQuote: true,
trailingComma: 'es5',
},
],
strict: ['error', 'global'],
yoda: 'warn',
},
};