v1.4.1
Rules
import/named
Disable import/named to avoid false positives when using CommonJS and/or modifying the exported namespace of any module at runtime
'import/named': 0
lines-between-class-members
Improves readability by enforcing lines between class members
'lines-between-class-members': 1
operator-linebreak
Consistent linebreak style for operators
'operator-linebreak': [1, 'after', {
'overrides': {
'?': 'before',
':': 'before'
}
}]