22 lines
498 B
JSON
22 lines
498 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"env": {
|
|
"node": true,
|
|
"commonjs": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"root": true,
|
|
"rules": {
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"no-console": "off"
|
|
},
|
|
"ignorePatterns": ["**/dist/*.js"]
|
|
}
|