1 Star 0 Fork 63

难得疯癫回/WaitAdmin开源后台系统(PHP版)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 2.91 KB
一键复制 编辑 原始数据 按行查看 历史
zero 提交于 2023-07-15 02:20 . 优化主题功能
module.exports = {
'root': true,
'ignorePatterns': ['src/uni_modules/'],
'env': {
'browser': true,
'es2021': true,
'node': true
},
'extends': [
'eslint:recommended',
'plugin:vue/vue3-recommended'
],
'globals': {
'uni': 'readonly',
'plus': 'readonly',
'wx': 'readonly',
},
'parserOptions': {
'ecmaVersion': 'latest',
'sourceType': 'module'
},
'plugins': [
'vue'
],
'rules': {
'semi': ['warn', 'never'],
'no-var': 'warn',
'no-empty': 'off',
'no-undef': 'off',
'no-shadow': 'off',
'no-console': 'warn',
'no-debugger': 'warn',
'no-lone-blocks': 'warn',
'no-extra-parens': 'warn',
'no-multi-spaces': 'off',
'no-empty-function': 'off',
'no-duplicate-case': 'warn',
'no-redeclare': 'warn',
'no-func-assign': 'warn',
'no-unreachable': 'warn',
'no-else-return': 'warn',
'no-return-assign': 'warn',
'no-return-await': 'warn',
'no-self-compare': 'warn',
'no-useless-catch': 'warn',
'no-useless-return': 'warn',
'no-mixed-spaces-and-tabs': 'warn',
'no-multiple-empty-lines': 'warn',
'no-trailing-spaces': 'warn',
'no-useless-call': 'warn',
'no-delete-var': 'off',
'dot-notation': 'warn',
'default-case': 'off',
'eqeqeq': 'warn',
'curly': 'warn',
'space-before-blocks': 'warn',
'space-in-parens': 'warn',
'space-infix-ops': 'warn',
'space-unary-ops': 'warn',
'arrow-spacing': 'warn',
'array-bracket-spacing': 'warn',
'brace-style': 'warn',
'camelcase': 'off',
'max-depth': ['warn', 4],
'max-statements': ['warn', 100],
'max-nested-callbacks': ['warn', 3],
'max-statements-per-line': ['warn', { max: 1 }],
'quotes': ['warn', 'single', 'avoid-escape'],
'switch-case-space': 'off',
'switch-colon-spacing': 'off',
'switch-space': [0, 'always'],
'indent': [
'warn',
4,
{ 'SwitchCase': 1 }
],
'vue/require-default-prop': 0,
'vue/multi-word-component-names': 0,
'vue/singleline-html-element-content-newline': 0,
'vue/multiline-html-element-content-newline': 0,
'vue/max-attributes-per-line': ['warn', { singleline: 5 }],
'vue/html-indent': ['warn', 4, {
'attribute': 1,
'baseIndent': 1,
'closeBracket': 0,
'alignAttributesVertically': true,
'ignores': []
}],
'vue/html-self-closing': ['error', {
'html': {
'void': 'always',
'normal': 'never',
'component': 'always'
},
'svg': 'always',
'math': 'always'
}]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/aeo_h/waitadmin-php.git
git@gitee.com:aeo_h/waitadmin-php.git
aeo_h
waitadmin-php
WaitAdmin开源后台系统(PHP版)
master

搜索帮助