Skip to content

Commit

Permalink
es6 modules
Browse files Browse the repository at this point in the history
  • Loading branch information
gpoitch committed Aug 11, 2014
1 parent 4a48469 commit ac7b1f0
Show file tree
Hide file tree
Showing 66 changed files with 4,447 additions and 4,216 deletions.
4 changes: 2 additions & 2 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@
"noempty" : true, // Prohibit use of empty blocks.
"nonew" : true, // Prohibit use of constructors for side-effects.
"regexp" : true, // Prohibit `.` and `[^...]` in regular expressions.
//"undef" : true, // Require all non-global variables be declared before they are used.
"undef" : true, // Require all non-global variables be declared before they are used.
//"unused" : true, // Warn when variables are created but not used.
"trailing" : true, // Prohibit trailing whitespaces.
"es3" : true, // Prohibit trailing commas for old IE
"esnext" : true, // Allow ES.next specific features such as `const` and `let`.

// == Relaxing Options ================================================
//
Expand All @@ -47,7 +48,6 @@
"debug" : false, // Allow debugger statements e.g. browser breakpoints.
"eqnull" : false, // Tolerate use of `== null`.
"es5" : false, // Allow EcmaScript 5 syntax.
"esnext" : false, // Allow ES.next specific features such as `const` and `let`.
"evil" : false, // Tolerate use of `eval`.
"expr" : false, // Tolerate `ExpressionStatement` as Programs.
"funcscope" : false, // Tolerate declarations of variables inside of control structures while accessing them later from the outside.
Expand Down
Loading

0 comments on commit ac7b1f0

Please sign in to comment.