@alexlit/lint-kit
Version:
Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)
21 lines (15 loc) • 493 B
JavaScript
/* eslint-disable unicorn/prevent-abbreviations */
module.exports = {
extends: ['plugin:array-func/all'],
plugins: ['array-func'],
rules: {
// delegate to eslint-plugin-unicorn
'array-func/no-unnecessary-this-arg': 'off',
// delegate to eslint-plugin-unicorn
'array-func/prefer-array-from': 'off',
// delegate to eslint-plugin-unicorn
'array-func/prefer-flat': 'off',
// delegate to eslint-plugin-unicorn
'array-func/prefer-flat-map': 'off',
},
};