1 Star 3 Fork 1

JA+/stk-table-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
JA+ 提交于 2024-11-15 10:06 . update dark, update docs
/** vue3-ts eslint config*/
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true,
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
plugins: ['html'],
extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-recommended', 'plugin:prettier/recommended'],
rules: {
'prettier/prettier': 1,
'@typescript-eslint/no-explicit-any': 1,
'@typescript-eslint/no-inferrable-types': 1, // let a:string = 's'; 提示去掉类型声明
'@typescript-eslint/no-empty-function': 1, // 不能有空方法,改为1警告
'@typescript-eslint/no-var-requires': 0, // 解决vue.config.js中require语法的报错
'@typescript-eslint/no-unused-vars': [1, { varsIgnorePattern: '^h$' }], // 用于取消tsx,jsx import { h } from 'vue 中提示h函数未使用的问题
// 'spaced-comment': 1, // 注释斜杠后空格
eqeqeq: 1, // 使用 ===
'dot-notation': 1, // 强制使用.不用[]
// 'no-debugger': 0,
// 'no-console': 0,
// 'no-undef': 0,
'no-new-object': 1, // 使用字面量创建对象 非new Object()
'object-shorthand': 1, // 对象方法属性值缩写
'vue/multi-word-component-names': 0,
// 'vue/attribute-hyphenation': [
// 'warn',
// 'never',
// {
// ignore: ['custom-prop'],
// },
// ],
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/japlus/stk-table-vue.git
[email protected]:japlus/stk-table-vue.git
japlus
stk-table-vue
stk-table-vue
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385