mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
20 lines
459 B
JavaScript
20 lines
459 B
JavaScript
module.exports = {
|
|
extends: 'airbnb-base',
|
|
env: {
|
|
node: true,
|
|
},
|
|
rules: {
|
|
'object-shorthand': ['error', 'always', {
|
|
avoidQuotes: true,
|
|
avoidExplicitReturnArrows: true,
|
|
}],
|
|
'function-paren-newline': ['error', 'consistent'],
|
|
'max-len': ['warn', 120, 2, {
|
|
ignoreUrls: true,
|
|
ignoreComments: false,
|
|
ignoreRegExpLiterals: true,
|
|
ignoreStrings: true,
|
|
ignoreTemplateLiterals: true,
|
|
}],
|
|
},
|
|
};
|