forked from saucelabs/tracelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (40 loc) · 1.17 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
module.exports = {
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint'
],
env: {
node: true,
es6: true
},
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
project: "./tsconfig.json"
},
plugins: ['@typescript-eslint'],
rules: {
semi: ['error', 'never'],
quotes: ['error', 'single'],
indent: [2, 4],
curly: 2,
'no-multiple-empty-lines': [2, {'max': 1, 'maxEOF': 1}],
'array-bracket-spacing': ['error', 'never'],
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
camelcase: ['error', { properties: 'never' }],
'comma-spacing': ['error', { before: false, after: true }],
'no-lonely-if': 'error',
'no-tabs': 'error',
'no-trailing-spaces': ['error', {
skipBlankLines: false,
ignoreComments: false
}],
quotes: ['error', 'single', { avoidEscape: true }],
'unicode-bom': ['error', 'never'],
'object-curly-spacing': ['error', 'always'],
'require-atomic-updates': 0,
'@typescript-eslint/explicit-function-return-type': 2,
'@typescript-eslint/indent': 0,
'@typescript-eslint/no-use-before-define': 0
}
}