unity-test-runner/.eslintrc.json

26 lines
745 B
JSON
Raw Permalink Normal View History

2020-01-29 20:49:35 +00:00
{
"plugins": ["jest", "@typescript-eslint", "prettier", "unicorn"],
"extends": ["plugin:unicorn/recommended", "plugin:github/recommended", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
2020-01-29 20:49:35 +00:00
"env": {
"node": true,
"es6": true,
"jest/globals": true
2020-01-29 20:49:35 +00:00
},
"rules": {
"prettier/prettier": "error",
2021-02-27 18:13:19 +00:00
"import/no-extraneous-dependencies": 0,
"import/no-namespace": "off",
"filenames/match-regex": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-module": "off",
"i18n-text/no-en": "off", // for results-check
"camelcase": "off", // for results-check
"import/no-unresolved": "off" // for results-check
2020-01-29 20:49:35 +00:00
}
}