-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.js
49 lines (47 loc) · 1.05 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'use strict';
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2018,
sourceType: 'script',
},
plugins: ['prettier'],
extends: ['plugin:prettier/recommended'],
env: {
node: true,
},
rules: {
strict: 'error',
'no-var': 'error',
'no-console': 'off',
'no-process-exit': 'off',
'object-shorthand': 'error',
},
overrides: [
{
files: ['**/*.ts'],
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
extends: ['plugin:@typescript-eslint/recommended'],
rules: {
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
},
},
{
files: ['test/**/*.js'],
plugins: ['mocha'],
env: {
mocha: true,
},
rules: {
'mocha/no-exclusive-tests': 'error',
'mocha/handle-done-callback': 'error',
},
},
],
};