2 Star 3 Fork 1

andyliu/threejsprojcet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
andyliu 提交于 2024-06-17 10:02 . 'init'
module.exports = {
root: true,
env: {
browser: true,
node: true,
es6: true,
},
extends: [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/eslint-config-typescript",
"prettier",
"plugin:vue/essential", // 或者 'plugin:vue/recommended' 根据你的需要
// 添加 Prettier 的配置
"plugin:prettier/recommended",
],
parser: "vue-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
ecmaVersion: 2020,
sourceType: "module",
jsxPragma: "React",
ecmaFeatures: {
jsx: true,
tsx: true,
},
},
plugins: ["vue", "prettier"],
rules: {
// TS
"@typescript-eslint/no-explicit-any": "off",
"no-debugger": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"vue/no-multiple-template-root": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
"no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
// Vue
"vue/no-v-html": "off",
"vue/require-default-prop": "off",
"vue/require-explicit-emits": "off",
"vue/multi-word-component-names": "off",
"vue/no-v-model-argument": "off",
"vue/html-self-closing": [
"error",
{
html: {
void: "always",
normal: "always",
component: "always",
},
svg: "always",
math: "always",
},
],
// Prettier
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
"no-alert": 0, //禁止使用alert confirm prompt
"default-case": "warn", // 要求switch语句中有default分支
eqeqeq: "warn", // 要求使用 === 和 !==
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/andyliu8971/threejsprojcet.git
git@gitee.com:andyliu8971/threejsprojcet.git
andyliu8971
threejsprojcet
threejsprojcet
master

搜索帮助