post-api-call/.eslintrc

19 lines
501 B
Plaintext
Raw Normal View History

2021-05-22 05:53:33 +08:00
{
"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
}
}