Skip to content

Commit

Permalink
Merge pull request #510 from visionmedia/refact-const-let
Browse files Browse the repository at this point in the history
Use const and let instead of var
  • Loading branch information
mikelax committed Sep 6, 2018
2 parents 322ebf6 + 913150d commit 04230bb
Show file tree
Hide file tree
Showing 3 changed files with 329 additions and 302 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
root = true

[*]
charset = utf-8
insert_final_newline = true
end_of_line = lf
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[*.{js,json}]
indent_size = 2
indent_style = space
3 changes: 3 additions & 0 deletions .eslintrc
Expand Up @@ -4,6 +4,9 @@
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
// disabled - disagree with airbnb
"func-names": [0],
Expand Down

0 comments on commit 04230bb

Please sign in to comment.