mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* Run yarn upgrade in order to resolve security vulnerability * Remove unneeded git add from pre-commit hook * Update packages * Update non-eslint packages
21 lines
554 B
JSON
21 lines
554 B
JSON
{
|
|
"plugins": ["jest", "@typescript-eslint", "prettier", "unicorn"],
|
|
"extends": ["plugin:unicorn/recommended", "plugin:github/recommended", "prettier"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 9,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest/globals": true
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"import/no-extraneous-dependencies": 0,
|
|
"import/no-namespace": "off",
|
|
"no-undef": "off" // TODO: REMOVE THIS LINE WHEN UPDATING ESLINT RULES
|
|
}
|
|
}
|