1 Star 0 Fork 2

jarodyao/vue3-data-dict

forked from mxnjs/vue3-data-dict 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 922 Bytes
一键复制 编辑 原始数据 按行查看 历史
moxun1639 提交于 2023-09-29 01:50 . initial
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
jquery: true,
node: true,
},
extends: 'eslint:recommended',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
'ecmaFeatures': {
'globalReturn': true,
'impliedStrict': true,
'modules': true,
},
},
rules: {
'comma-dangle': ['error', 'always-multiline'],
'no-console': 'off',
'no-debugger': 'off',
'indent': [
'error',
2,
{
'SwitchCase': 1,
'VariableDeclarator': 1,
'flatTernaryExpressions': true,
},
],
'linebreak-style': ['error', 'unix'],
'quotes': ['error', 'single'],
'semi': ['error', 'never'],
'no-extra-semi': 'error',
'no-unused-vars': ['error', { 'vars': 'local', 'args': 'none', 'ignoreRestSiblings': false }],
'space-before-blocks': ['error', 'always'],
'no-undef': [1],
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jarodyao/vue3-data-dict.git
git@gitee.com:jarodyao/vue3-data-dict.git
jarodyao
vue3-data-dict
vue3-data-dict
main

搜索帮助