mirror of
https://github.com/aljazceru/sendstr-web.git
synced 2025-12-17 06:24:24 +01:00
16 lines
422 B
JavaScript
16 lines
422 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "@typescript-eslint/parser",
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
],
|
|
plugins: ["@typescript-eslint"],
|
|
parserOptions: {
|
|
project: ["./tsconfig.json"]
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": 1
|
|
}
|
|
} |