mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-28 18:35:21 +01:00
28 lines
No EOL
628 B
JSON
28 lines
No EOL
628 B
JSON
{
|
|
"env": {
|
|
"commonjs": true,
|
|
"es2021": true,
|
|
"jest": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
} |