@swimlane/eslint-config
Version:
Linting rules for Javascript
22 lines (21 loc) • 527 B
JavaScript
module.exports = {
rules: {
'arrow-parens': 'off',
forin: 'off',
'interface-name': 'off',
'valid-jsdoc': 'error',
'member-access': 'off',
'no-bitwise': 'off',
'no-console': 1,
'no-reference': 'off',
'no-string-literal': 'off',
'no-trailing-whitespace': 'off',
'no-unused-new': 'off',
'no-var-requires': 'off',
'object-literal-sort-keys': 'off',
'only-arrow-functions': 'off',
'ordered-imports': 'off',
'prefer-for-of': 'off',
'trailing-comma': 'off'
}
};