You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
516 B

extends: 'eslint:recommended'
env:
node: true
mocha: true
rules:
comma-style: error
consistent-this:
- error
- _this
indent:
- error
- 2
- SwitchCase: 1
VariableDeclarator: 2
keyword-spacing: error
no-console: off
no-multi-spaces: error
no-spaced-func: error
no-trailing-spaces: error
quotes:
- error
- single
semi: error
space-before-blocks: error
space-before-function-paren:
- error
- never
space-infix-ops: error
space-unary-ops: error