mirror of https://github.com/actions/toolkit
20 lines
442 B
JSON
20 lines
442 B
JSON
{
|
|
"plugins": ["jest", "@typescript-eslint"],
|
|
"extends": ["plugin:github/es6"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 9,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"eslint-comments/no-use": "off",
|
|
"import/no-namespace": "off",
|
|
"@typescript-eslint/no-unused-vars": "error"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest/globals": true
|
|
}
|
|
} |