forked from ScopeLift/umbra-protocol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
32 lines (29 loc) · 1.04 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
module.exports = {
env: {
es2021: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:vue/essential',
'prettier',
'prettier/@typescript-eslint',
'prettier/vue',
],
plugins: ['@typescript-eslint', 'vue'],
rules: {
'prefer-const': 'error',
'prefer-promise-reject-errors': 'off',
quotes: ['warn', 'single', { avoidEscape: true }],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
},
};