5 Star 55 Fork 27

steve/character-simulator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 3.35 KB
一键复制 编辑 原始数据 按行查看 历史
chensiyi 提交于 2023-08-11 14:40 . feat: upload project
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
env: {
browser: true,
es2020: true,
'vue/setup-compiler-macros': true
},
'extends': [
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/eslint-config-typescript'
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: "module"
},
rules: {
"indent": [2, "tab"],
"quotes": [2, "double"],
"no-mixed-spaces-and-tabs": 2,
"no-undef": 2, // 不可以有未声明的变量
"no-redeclare": 2, // 禁止重复声明变量
"semi": [2, "always"], // 语句强制分号结尾
"no-func-assign": 2, // 禁止重复的函数声明
"block-spacing": [2, "always"], // 块级作用域缩进
"brace-style": [2, "1tbs", {allowSingleLine: true}], // 大括号风格,允许写在一行
"comma-spacing": [2, {before: false, after: true}], // 逗号前后的空格
"comma-style": [2, "last"], // 逗号风格,换行时在行首还是行尾
"eqeqeq": [2, "allow-null"], // 必须使用全等
"generator-star-spacing": [2, {before: false, after: true}], // generate函数的前后空格
"key-spacing": [2, {beforeColon: false, afterColon: true}], // 对象字面量中冒号添加后空格
"keyword-spacing": [2, {before: true, after: true}], // 关键字前后空格
"new-parens": 2, // new时必须加小括号
"no-cond-assign": 2, // 禁止在条件表达式中使用赋值语句
"no-dupe-args": 2, // 函数参数不能重复
"no-dupe-class-members": 2, // 对象成员不能重复
"no-duplicate-case": 2, // switch中的case标签不能重复
"no-empty-pattern": 2, // 禁止空解构
"no-eval": 2, // 禁止使用eval
"no-extra-parens": [2, "functions"], // 禁止非必要的括号
"no-invalid-regexp": 2, // 禁止无效的正则表达式
"no-irregular-whitespace": 2, // 不能有不规则的空格
"no-multiple-empty-lines": [2, {max: 1}], // 空行最多不能超过2行
"no-regex-spaces": 2, // 禁止在正则表达式字面量中使用多个空格
"no-trailing-spaces": 2, // 一行结束后面不要有空格
"no-whitespace-before-property": 2, // 对象键之前无空格
"operator-linebreak": [2, "after", {overrides: {"?": "before", ":": "before"}}], // 换行时运算符在行尾还是行首
"padded-blocks": [2, "never"], // 块语句内行首行尾不能空行
"semi-spacing": [2, {before: false, after: true}], // 分号前后空格
"space-before-blocks": [2, "always"], // 不以新行开始的块{前面需要有空格
"space-in-parens": [2, "never"], // 小括号里面不需要有空格
"space-infix-ops": 2, // 中缀操作符周围需要有空格
"space-unary-ops": [2, {words: true, nonwords: false}], // 一元运算符的前/后要不要加空格
"spaced-comment": [
2,
"always",
{markers: ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","]},
], // 注释风格需要有空格
"template-curly-spacing": [2, "never"], // 模板中{}包裹的变量不需要空格
"wrap-iife": [2, "any"], // 立即执行函数表达式的小括号风格任意一种都可以
"yield-star-spacing": [2, "both"], // generate 函数 yield风格
"object-curly-spacing": [2, "never", {objectsInObjects: false}], // 大括号内是否允许不必要的空格
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/steve007/character-simulator.git
git@gitee.com:steve007/character-simulator.git
steve007
character-simulator
character-simulator
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385