UNPKG

eslint-config-client-shiwaforce

Version:
20 lines (19 loc) 560 B
/** * spacing rules * @author sarkiroka on 2017.02.21. */ export default { 'block-spacing': ['warn'], 'computed-property-spacing': ['error'], 'indent': ['error', 'tab', { SwitchCase: 1 }], 'keyword-spacing': ['error'], 'no-irregular-whitespace': ['error'], 'no-regex-spaces': ['error'], 'no-spaced-func': ['error'], 'no-trailing-spaces': ['error'], 'space-before-function-paren': ['warn', { named: 'never' }], 'space-before-blocks': ['warn'], 'space-infix-ops': ['error'], 'space-unary-ops': ['error'], 'spaced-comment': ['error', 'always'] };