-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
26 lines (25 loc) · 974 Bytes
/
.eslintrc.cjs
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
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript/recommended',
'@vue/eslint-config-prettier',
],
rules: {
'no-console': 'error',
// 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
indent: ['error', 4],
'@typescript-eslint/ban-ts-comment': ['off'],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/explicit-module-boundary-types': ['off'],
'@typescript-eslint/no-non-null-assertion': ['off'],
'@typescript-eslint/ban-types': [0],
'@typescript-eslint/no-empty-interface': ['off'],
'@typescript-eslint/no-empty-function': ['off'],
'@typescript-eslint/no-this-alias': ['off'],
'vue/no-useless-template-attributes': ['off'],
},
};