Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = {
// Possible Errors
// ------------------------------------------
'no-console': 'off',
"no-shadow": "off",
'node/handle-callback-err': ['error', "^.*(e|E)rr"],
'node/no-callback-literal': 'error',
'node/no-exports-assign': 'off',
Expand Down Expand Up @@ -45,6 +46,7 @@ module.exports = {
'node/prefer-promises/fs': 'error',
// Typescript
// ------------------------------------------
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-empty-interface': 'off',
"@typescript-eslint/no-shadow": "error"
}
};