28 lines
590 B
JavaScript
28 lines
590 B
JavaScript
module.exports = {
|
|
extends: 'airbnb-base',
|
|
plugins: [
|
|
'import'
|
|
],
|
|
rules: {
|
|
'max-len': ['error', 1000, 2, {
|
|
ignoreUrls: true,
|
|
ignoreComments: false,
|
|
ignoreRegExpLiterals: true,
|
|
ignoreStrings: true,
|
|
ignoreTemplateLiterals: true,
|
|
}],
|
|
'comma-dangle': ['error', {
|
|
arrays: 'always-multiline',
|
|
objects: 'always-multiline',
|
|
imports: 'always-multiline',
|
|
exports: 'always-multiline',
|
|
functions: 'never',
|
|
}],
|
|
'prefer-destructuring': ['off'],
|
|
},
|
|
globals: {
|
|
'window': true,
|
|
'document': true,
|
|
}
|
|
};
|