加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 2.32 KB
一键复制 编辑 原始数据 按行查看 历史
Rookie 提交于 2024-03-30 19:13 . fix:init
module.exports = {
root: true,
env: {
es6: true,
browser: true,
node: true,
},
ecmaFeatures: {
modules: true,
},
globals: {
wx: true,
App: true,
Page: true,
getCurrentPages: true,
getApp: true,
Component: true,
requirePlugin: true,
requireMiniProgram: true,
uni: true,
axios: true,
globalModal: true,
},
plugins: ['vue'],
extends: [
'plugin:vue/vue3-essential',
'plugin:vue/vue3-strongly-recommended',
'plugin:vue/base',
'prettier',
'plugin:json/recommended',
'plugin:prettier/recommended',
],
rules: {
'vue/no-multiple-template-root': 'off',
'vue/no-multiple-template-root': 0,
'vue/no-parsing-error': [
'error',
{
'x-invalid-end-tag': false,
},
],
'no-nested-ternary': 'off',
'no-underscore-dangle': 'off',
'no-lonely-if': 'off',
'no-named-as-default': 'off',
'vue/no-side-effects-in-computed-properties': 'off',
'vue/no-deprecated-v-on-native-modifier': 'off',
'linebreak-style': 'off',
indent: ['off', 2],
semi: ['error', 'always'],
'no-mixed-spaces-and-tabs': ['error', false],
'func-names': 'off',
'no-param-reassign': 'off',
'object-curly-spacing': 'off',
'arrow-parens': 'off',
'global-require': 'off',
'no-extra-boolean-cast': 'off',
'object-shorthand': 'off',
'prefer-destructuring': 'off',
'consistent-return': 0,
'import/extensions': 'off',
'comma-dangle': ['error', 'always-multiline'],
'class-methods-use-this': 'off',
'no-continue': 'off',
'no-mixed-operators': 'off',
'no-plusplus': 'off',
'no-await-in-loop': 'off',
'no-restricted-syntax': 'warn',
'prefer-const': 'warn',
'no-new': 'warn',
radix: 'warn',
'prefer-template': 'warn',
'no-use-before-define': 'off',
'no-shadow': 'warn',
'import/no-unresolved': 'off',
'template-curly-spacing': 'off',
'vue/jsx-uses-vars': 2,
'vue/prefer-import-from-vue': 'off',
quotes: ['error', 'single'],
'guard-for-in': 'off',
'no-var': 'error',
'no-unused-vars': 'warn',
'no-unused-expressions': 'warn',
'no-return-assign': 'warn',
'max-len': [
'error',
{
code: 1200,
ignoreUrls: true,
},
],
'no-tabs': 'off',
'vue/multi-word-component-names': 0,
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化