feat:初始化 -融骅
This commit is contained in:
35
editor/.eslintrc.js
Normal file
35
editor/.eslintrc.js
Normal file
@@ -0,0 +1,35 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
node: true,
|
||||
},
|
||||
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/typescript/recommended', 'plugin:prettier/recommended'],
|
||||
parserOptions: {
|
||||
ecmaVersion: 2020,
|
||||
},
|
||||
rules: {
|
||||
'prettier/prettier': 'off',
|
||||
'@typescript-eslint/no-namespace': 'off',
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'generator-star-spacing': 'off',
|
||||
'no-mixed-operators': 0,
|
||||
'no-irregular-whitespace': 0,
|
||||
'no-empty': 0,
|
||||
'space-before-function-paren': 0,
|
||||
'no-multi-spaces': 0,
|
||||
'no-unused-vars': 0,
|
||||
'vue/attribute-hyphenation': 0,
|
||||
'vue/html-self-closing': 0,
|
||||
'vue/component-name-in-template-casing': 0,
|
||||
'vue/html-closing-bracket-spacing': 0,
|
||||
'vue/singleline-html-element-content-newline': 0,
|
||||
'vue/no-unused-components': 0,
|
||||
'vue/multiline-html-element-content-newline': 0,
|
||||
'vue/html-closing-bracket-newline': 0,
|
||||
'vue/no-parsing-error': 0,
|
||||
'no-mixed-spaces-and-tabs': [0],
|
||||
'vue/no-unused-vars': 0,
|
||||
'vue/multi-word-component-names': 'off',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user