mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 14:21:13 +00:00
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
'use strict';
|
|
|
|
// Clone the main config
|
|
var config = module.exports = JSON.parse(JSON.stringify(require('../.eslintrc')));
|
|
|
|
// Disable max line length/statements
|
|
config.rules['max-len'] = 'off';
|
|
config.rules['max-statements'] = 'off';
|