facilmap/server/.eslintrc.js

20 wiersze
484 B
JavaScript
Czysty Zwykły widok Historia

2020-12-24 04:57:46 +00:00
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
env: {
node: true
2020-12-24 17:51:21 +00:00
},
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-module-boundary-types": ["warn", { allowArgumentsExplicitlyTypedAsAny: true }]
2020-12-24 04:57:46 +00:00
}
};