1 Star 2 Fork 1

Calvin/Screeps-Bot-Template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.yml 2.50 KB
一键复制 编辑 原始数据 按行查看 历史
BrunchTea 提交于 2023-12-11 00:36 . chore: update environment and add lint
env:
browser: true
es6: true
node: true
extends:
- "eslint:recommended"
- "plugin:@typescript-eslint/recommended"
- "plugin:@typescript-eslint/recommended-requiring-type-checking"
- "plugin:prettier/recommended"
- "prettier"
- "plugin:import/errors"
- "plugin:import/warnings"
- "plugin:import/typescript"
parser: "@typescript-eslint/parser"
parserOptions:
project: tsconfig.json
sourceType: module
plugins:
- "@typescript-eslint"
- import
- deprecation
settings: { "import/parsers": { "@typescript-eslint/parser": [".ts", ".tsx"] }, "import/resolver": { typescript: {} } }
rules:
{
"@typescript-eslint/array-type": "error",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/consistent-type-definitions": "error",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": ["error", { accessibility: "explicit" }],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-unused-expressions": "error",
"@typescript-eslint/no-use-before-define": ["error", { functions: false }],
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/space-within-parens": ["off", "never"],
"@typescript-eslint/unified-signatures": "error",
"@typescript-eslint/no-unused-vars": "warn",
"arrow-parens": ["off", "as-needed"],
camelcase: "error",
complexity: "off",
"deprecation/deprecation": "warn",
"dot-notation": "error",
"eol-last": "off",
eqeqeq: ["error", "smart"],
"guard-for-in": "off",
"id-blacklist": ["error", "any", "Number", "number", "String", "string", "Boolean", "boolean", "Undefined"],
"id-match": "error",
"linebreak-style": "off",
"max-classes-per-file": ["error", 1],
"new-parens": "off",
"newline-per-chained-call": "off",
"no-bitwise": "error",
"no-caller": "error",
"no-cond-assign": "error",
"no-console": "off",
"no-eval": "error",
"no-invalid-this": "off",
"no-multiple-empty-lines": "off",
"no-new-wrappers": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": [ "error" ],
"no-throw-literal": "error",
"no-trailing-spaces": "off",
"no-undef-init": "error",
"no-underscore-dangle": "off",
"no-var": "error",
"object-shorthand": "error",
"one-var": ["error", "never"],
"quote-props": "off",
radix: "error",
"sort-imports": "error",
"spaced-comment": "error",
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ScreeperC/screeps-bot-template.git
git@gitee.com:ScreeperC/screeps-bot-template.git
ScreeperC
screeps-bot-template
Screeps-Bot-Template
master

搜索帮助