1 Star 0 Fork 1.3K

kyhao/dgiot-dashboard

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 2.73 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
root: true,
env: {
node: true,
},
extends: ['plugin:vue/recommended'],
parser: 'vue-eslint-parser',
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
ecmaFeatures: {
jsx: true,
},
},
rules: {
"indent": ["off", 2],
'linebreak-style': [0, 'error', 'windows'],
// "max-len" : ["error", {code : 3000}],
'no-unused-vars': 'off',
'no-undef': 'off',
'no-console': 'off',
'no-debugger': 'off',
'vue/no-template-shadow': 'off',
'vue/no-v-html': 'off',
'vue/attributes-order': 0,
"vue/html-indent": ["error", 2, {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}],
'vue/html-self-closing': [
'error',
{
html: {
void: 'any',
normal: 'any',
component: 'always',
},
svg: 'always',
math: 'always',
},
],
"vue/max-attributes-per-line": ["error", {
"singleline": 1,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
// Vue.js风格指南(https://cn.vuejs.org/v2/style-guide/)
// Vue组件排序
'vue/order-in-components': [
'warn',
{
order: [
'el',
'name',
'key',
'parent',
'functional',
['delimiters', 'comments'],
['components', 'directives', 'filters'],
'extends',
'mixins',
['provide', 'inject'],
'ROUTER_GUARDS',
'layout',
'middleware',
'validate',
'scrollToTop',
'transition',
'loading',
'inheritAttrs',
'model',
['props', 'propsData'],
'emits',
'setup',
'fetch',
'asyncData',
'data',
'head',
'computed',
'watch',
'watchQuery',
'LIFECYCLE_HOOKS',
'methods',
['template', 'render'],
'renderError',
],
},
],
// Vue属性排序
// 'vue/attributes-order': [
// 'warn',
// {
// order: [
// 'DEFINITION',
// 'LIST_RENDERING',
// 'CONDITIONALS',
// 'RENDER_MODIFIERS',
// 'GLOBAL',
// 'UNIQUE',
// 'TWO_WAY_BINDING',
// 'OTHER_DIRECTIVES',
// 'OTHER_ATTR',
// 'EVENTS',
// 'CONTENT',
// ],
// alphabetical: false, //字母顺序
// },
// ],
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)',
],
env: {
jest: true,
},
},
],
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kyhao/dgiot-dashboard.git
[email protected]:kyhao/dgiot-dashboard.git
kyhao
dgiot-dashboard
dgiot-dashboard
master

搜索帮助