mirror of
https://github.com/omnivore-app/omnivore-api.git
synced 2026-05-21 09:10:36 +00:00
20 lines
467 B
Plaintext
20 lines
467 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"env": { "node": true },
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"semi": [2, "never"],
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
}
|