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'; 'use strict';
// Clone the main config // 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 // Disable max line length/statements
config.rules['max-len'] = 'off'; config.rules['max-len'] = 'off';

View File

@@ -1,7 +1,7 @@
'use strict'; 'use strict';
// Clone the main config // Clone the main config
var config = module.exports = JSON.parse(JSON.stringify(require('../.eslintrc'))); const config = module.exports = JSON.parse(JSON.stringify(require('../.eslintrc')));
// We use `this` all over the integration tests // We use `this` all over the integration tests
config.rules['no-invalid-this'] = 'off'; config.rules['no-invalid-this'] = 'off';