-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
46 lines (46 loc) · 978 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
35
36
37
38
39
40
41
42
43
44
45
46
module.exports = {
env: {
es2020: true,
node: true,
jest: true,
},
extends: [
'standard',
'plugin:@typescript-eslint/recommended',
'prettier',
'plugin:prettier/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 11,
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'promise'],
rules: {
'no-nested-ternary': 'error',
'prettier/prettier': [
'error',
{
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
endOfLine: 'lf',
},
],
'promise/prefer-await-to-then': 'error',
'promise/prefer-await-to-callbacks': 'error',
},
overrides: [
{
files: ['__tests__/*.test.ts'],
rules: {
'promise/prefer-await-to-then': 'off',
'promise/prefer-await-to-callbacks': 'off',
},
},
],
};