bitburner-src/.eslintrc.js

36 lines
894 B
JavaScript
Raw Normal View History

module.exports = {
2021-09-05 01:09:30 +02:00
env: {
browser: true,
commonjs: true,
es6: false,
},
2022-05-25 17:43:43 +02:00
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
//"plugin:@typescript-eslint/recommended-requiring-type-checking",
//"plugin:@typescript-eslint/strict",
2022-05-25 17:43:43 +02:00
],
2021-09-05 01:09:30 +02:00
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 8,
sourceType: "module",
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
project: ["./tsconfig.json", "./test/tsconfig.json", "./tools/tsconfig.json"],
2021-09-05 01:09:30 +02:00
},
plugins: ["@typescript-eslint"],
rules: {
2022-07-28 20:35:55 +02:00
"@typescript-eslint/no-unused-vars": [
"error",
{
argsIgnorePattern: "^__",
varsIgnorePattern: "^__",
caughtErrorsIgnorePattern: "^__",
},
],
2022-07-19 17:43:10 +02:00
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
2021-09-05 01:09:30 +02:00
},
};