1 Star 2 Fork 0

xfwinne/vue2-echarts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
xfwinne 提交于 2021-11-03 14:49 . feat: 初始化项目
module.exports = {
env: {
browser: true,
es2021: true,
commonjs: true,
node: true,
},
extends: [
'plugin:vue/essential',
'airbnb-base',
],
parserOptions: {
ecmaVersion: 13,
sourceType: 'module',
parser: 'babel-eslint',
},
plugins: [
'vue',
],
rules: {
indent: ['error', 4, { SwitchCase: 1 }],
'linebreak-style': 'off',
'import/extensions': 'off',
'import/no-unresolved': 'off',
'no-console': 'off',
'import/prefer-default-export': 'off',
'no-plusplus': 'off',
'no-param-reassign': 'off',
'no-restricted-globals': 'off',
'no-unused-vars': ['warn', { args: 'none' }],
'no-trailing-spaces': 'off',
'vue/no-unused-components': 'off',
'space-before-function-paren': 1,
'max-len': ['error', {
ignoreComments: true,
code: 100,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
}],
radix: 'off',
'no-restricted-syntax': 'off',
'guard-for-in': 'off',
'vue/multi-word-component-names': 'off',
'no-underscore-dangle': 'off',
'no-unused-expressions': ['error', { allowShortCircuit: true }],
'no-shadow': 'off',
'consistent-return': 'off',
'import/no-extraneous-dependencies': 'off',
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xfwinne/vue2-echarts.git
[email protected]:xfwinne/vue2-echarts.git
xfwinne
vue2-echarts
vue2-echarts
master

搜索帮助