Fix linter errors

This commit is contained in:
Jose Bolos
2021-11-26 15:22:28 +00:00
parent ff87055cc4
commit 19f4d32bf0
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
'use strict';
// Clone the main config
var config = module.exports = JSON.parse(JSON.stringify(require('../.eslintrc')));
const config = module.exports = JSON.parse(JSON.stringify(require('../.eslintrc')));
// Disable max line length/statements
config.rules['max-len'] = 'off';