Skip to content

Commit

Permalink
Merge 50f22f8 into 2c49b2b
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Poberezkin committed Jan 12, 2017
2 parents 2c49b2b + 50f22f8 commit 4c2ea6d
Show file tree
Hide file tree
Showing 6 changed files with 971 additions and 351 deletions.
28 changes: 28 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
extends: eslint:recommended
env:
node: true
browser: true
rules:
no-constant-condition: 0
no-shadow: 1
block-scoped-var: 2
callback-return: 2
complexity: [2, 13]
curly: [2, multi-or-nest, consistent]
dot-location: [2, property]
dot-notation: 2
indent: [2, 2, SwitchCase: 1]
linebreak-style: [2, unix]
new-cap: 2
no-console: [2, allow: [warn, error]]
no-else-return: 2
no-eq-null: 2
no-fallthrough: 2
no-invalid-this: 2
no-return-assign: 2
no-trailing-spaces: 2
no-use-before-define: [2, nofunc]
quotes: [2, single, avoid-escape]
semi: [2, always]
strict: [2, global]
valid-jsdoc: [2, requireReturn: false]
Loading

0 comments on commit 4c2ea6d

Please sign in to comment.