mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
22 lines
603 B
Plaintext
22 lines
603 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"root": true,
|
|
"env": { "browser": true, "node": true },
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/await-thenable": "off",
|
|
"@typescript-eslint/restrict-template-expressions": "off"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"project": "./tsconfig.json"
|
|
}
|
|
}
|