26 lines
549 B
JSON
26 lines
549 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
"plugins": ["@typescript-eslint"],
|
|
"env": {
|
|
"node": true,
|
|
"es2022": true
|
|
},
|
|
"rules": {
|
|
"no-console": [
|
|
"error",
|
|
{
|
|
"allow": ["error", "warn"]
|
|
}
|
|
],
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{
|
|
"argsIgnorePattern": "^_"
|
|
}
|
|
]
|
|
}
|
|
}
|