Merge branch 'feature/update-eslintrc' into develop

# Conflicts:
#	.codeclimate.yml
This commit is contained in:
Alexander.Trofimov
2017-10-20 16:49:45 +03:00
3 changed files with 15 additions and 3 deletions

View File

@ -2,13 +2,13 @@ checks:
file-lines:
config:
threshold: 5000
plugins:
engines:
eslint:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
enabled: false
config:
languages:
- javascript:

View File

@ -1 +0,0 @@

13
.eslintrc.yaml Normal file
View File

@ -0,0 +1,13 @@
root: true
env:
browser: true
rules:
# Strict Mode
# http://eslint.org/docs/rules/#strict-mode
strict: [error, global]
# Stylistic Issues
# http://eslint.org/docs/rules/#stylistic-issues
linebreak-style: [error, unix]