my-idlers/node_modules/collect.js/.eslintrc.js

25 lines
397 B
JavaScript
Raw Normal View History

module.exports = {
extends: 'airbnb-base',
parserOptions: {
sourceType: 'script',
},
plugins: [
'import',
'markdown',
],
rules: {
'curly': [
'error',
'all',
],
'brace-style': [
'error',
'1tbs',
{ 'allowSingleLine': false },
],
'no-console': 'error',
'no-ternary': 'error',
'newline-before-return': 'error',
},
};