mirror of
https://github.com/dkershner6/post-api-call-action.git
synced 2024-11-15 15:03:51 +08:00
19 lines
501 B
Plaintext
19 lines
501 B
Plaintext
{
|
|
"plugins": ["jest", "@typescript-eslint", "github"],
|
|
"extends": ["plugin:github/recommended", "eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 9,
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json",
|
|
"createDefaultProgram": true
|
|
},
|
|
"rules": {
|
|
"camelcase": "off"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest/globals": true
|
|
}
|
|
} |