0 Star 0 Fork 0

im / BehaviorTree.TS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 844 Bytes
一键复制 编辑 原始数据 按行查看 历史
im 提交于 2024-02-09 15:46 . initial
/** @type {import("eslint").ESLint.ConfigData} */
module.exports = {
root: true,
env: {
node: true,
browser: true,
},
extends: [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: ".",
ecmaVersion: "latest",
sourceType: "module",
},
rules: {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_", caughtErrors: "all" }],
"prefer-const": [
"error",
{
destructuring: "all",
ignoreReadBeforeAssign: false,
},
],
},
};
1
https://gitee.com/imere/BehaviorTree.TS.git
git@gitee.com:imere/BehaviorTree.TS.git
imere
BehaviorTree.TS
BehaviorTree.TS
main

搜索帮助