doff
Version:
A powerful tool to free your objects and arrays from unwanted content
17 lines (16 loc) • 391 B
JavaScript
module.exports = {
extends: ['semistandard'],
env: {
browser: true,
node: true,
es6: true,
mocha: true
},
rules: {
'no-console': 'warn',
'global-require': 'error',
'max-len': ['error', 120, 2, { ignoreComments: false }],
'generator-star-spacing': ['error', { before: false, after: true }],
'space-before-function-paren': ['error', 'never']
}
};