@lmc-eu/eslint-config-base
Version:
LMC's ESlint configuration preset
17 lines (14 loc) • 563 B
JavaScript
module.exports = {
rules: {
// Require braces in arrow function body
// This rule can enforce the use of braces around arrow function body.
// https://eslint.org/docs/rules/arrow-body-style
'arrow-body-style': ['warn', 'as-needed'],
// Require space before/after arrow function's arrow
// https://eslint.org/docs/rules/arrow-spacing
'arrow-spacing': 'warn', // airbnb error
// Disallow duplicate module imports
// https://eslint.org/docs/rules/no-duplicate-imports
'no-duplicate-imports': 'warn', // airbnb off
},
};