abapGit/.eslintrc.yaml
sbcgua ceb7a6d02a Eslint (#2240)
* configs

* fix lint errors
2018-12-30 08:05:17 +01:00

15 lines
316 B
YAML

---
parserOptions:
ecmaVersion: 5
env:
browser: true
extends:
- eslint:recommended
rules:
quotes: ['error', 'double', { 'avoidEscape': true }]
semi: ['error', 'always', { 'omitLastInOneLineBlock': true}]
no-console: off
indent: ['error', 2]
no-trailing-spaces: ['error']
no-unused-vars: ['warn']