22 lines
678 B
Plaintext
22 lines
678 B
Plaintext
{
|
|
"rules": {
|
|
"@typescript-eslint/naming-convention": "off",
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/explicit-function-return-types": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
|
},
|
|
"extends": [
|
|
"plugin:@typescript-eslint/recommended" // Uses the recommended rules from the @typescript-eslint/eslint-plugin
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest", // Allows for the parsing of modern ECMAScript features
|
|
"sourceType": "module" // Allows for the use of imports
|
|
},
|
|
|
|
"env": {
|
|
"node": true
|
|
}
|
|
}
|