mirror of
https://github.com/valitydev/build-actions.git
synced 2024-11-06 10:15:19 +00:00
31 lines
669 B
JSON
31 lines
669 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"plugin:jest/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:github/recommended"
|
|
],
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 9,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"comma-dangle": "off",
|
|
"import/no-namespace": "off",
|
|
"prefer-promise-reject-errors": "off"
|
|
}
|
|
}
|