eslint-config-client-shiwaforce
Version:
Shareable client side config for eslint by ShiwaForce
21 lines (20 loc) • 664 B
JavaScript
/**
* spacing rules
* @author sarkiroka on 2017.02.21.
*/
module.exports = {
'block-spacing': [1],
'computed-property-spacing': [2],
'indent': [2, 'tab', {SwitchCase: 1}],
'keyword-spacing': [2],
'no-irregular-whitespace': [2],
'no-regex-spaces': [2],
'no-spaced-func': [2],
'no-trailing-spaces': [2],
// 'object-curly-spacing': [2, 'never'],
'space-before-function-paren': [1, {named: 'never'}],
'space-before-blocks': [1],
'space-infix-ops': [2],
'space-unary-ops': [2],
'spaced-comment': [2, 'always']
};