-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
27 lines (27 loc) · 974 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
/** @type {import('eslint').Linter.Config } */
module.exports = {
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 2020,
sourceType: 'module',
},
env: {
node: true,
browser: true,
commonjs: true,
},
settings: {},
extends: ['plugin:vue/vue3-recommended', 'plugin:@typescript-eslint/recommended', 'eslint:recommended'],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'vue/multi-word-component-names': 'off',
'vue/no-unused-components': 'off',
'newline-per-chained-call': ['error', { ignoreChainWithDepth: 2 }],
indent: ['error', 4, { SwitchCase: 1 }],
},
};