Address comments

This commit is contained in:
Fredrik Adelöw
2020-04-22 17:25:24 +02:00
parent 83689b6236
commit c2b5647036
5 changed files with 9 additions and 44 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
module.exports = {
rules: {
'no-console': 0, // Permitted in console programs
'new-cap': 0, // Because Express constructs things e.g. like 'const r = express.Router()'
'new-cap': ['error', { capIsNew: false }], // Because Express constructs things e.g. like 'const r = express.Router()'
},
};