swiper
Version:
Most modern mobile touch slider and framework with hardware accelerated transitions
28 lines (27 loc) • 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,
}
};