feat: using some of the latest work from @freben to align with the backend plugin strategy

This commit is contained in:
blam
2020-04-24 05:49:21 +02:00
committed by blam
parent 9831029430
commit 142f57949d
12 changed files with 301 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
rules: {
'no-console': 0, // Permitted in console programs
'new-cap': ['error', { capIsNew: false }], // Because Express constructs things e.g. like 'const r = express.Router()'
},
};