forked from muenzpraeger/create-lwc-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
35 lines (27 loc) · 872 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
module.exports = {
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
env: {
node: true,
es6: true
},
rules: {
// TODO
'@typescript-eslint/no-var-requires': 0,
// Using snakecase for log messages
'@typescript-eslint/camelcase': 0,
// Conflicts with prettier
'@typescript-eslint/indent': 0,
'@typescript-eslint/member-delimiter-style': 0,
// Rules with too much constraints
'@typescript-eslint/explicit-member-accessibility': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-explicit-any': 0,
// Helper
'@typescript-eslint/ban-ts-ignore': 0
}
}