3 Star 0 Fork 0

a20070322/i18n-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.json 904 Bytes
一键复制 编辑 原始数据 按行查看 历史
小吾立 提交于 2024-06-18 14:28 . add test2、添加 prettierrc 配置
{
"root": true,
"env": {
"node": true,
"es2021": true,
"browser": true
},
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": "latest",
"parser": "@typescript-eslint/parser",
"ecmaFeatures": {
"jsx": true // 启用 jsx
}
},
"plugins": ["prettier", "@typescript-eslint"],
"extends": [
"eslint:recommended", // 内置规则
"plugin:vue/vue3-recommended", // 支持 vue sfc
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:prettier/recommended",
"eslint-config-prettier",
"./.eslintrc-auto-import.json",
"./.eslintrc-global-import.json"
],
"rules": {
// 禁止使用 var,而应该用 let const
"no-var": "error",
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
"vue/multi-word-component-names": "off",
// 处理换行
"endOfLine": 0
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/a20070322/i18n-tools.git
git@gitee.com:a20070322/i18n-tools.git
a20070322
i18n-tools
i18n-tools
main

搜索帮助