Skip to content

Commit

Permalink
converted to es6
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Aug 25, 2015
1 parent d114c11 commit efa8fbc
Show file tree
Hide file tree
Showing 13 changed files with 946 additions and 784 deletions.
10 changes: 5 additions & 5 deletions .eslintrc
@@ -1,4 +1,4 @@
// 21 August 2015
// 25 August 2015
// https://github.com/bevry/base
{
"parser": "babel-eslint",
Expand Down Expand Up @@ -155,8 +155,8 @@
// Disable complexity checks, they are annoying and not that useful in detecting actual complexity
"complexity": 0,

// Seems like a good idea to error about this
"consistent-return": 2,
// We use blank returns for break statements
"consistent-return": 0,

// Always require curly braces unless the statement is all on a single line
"curly": [2, "multi-line"],
Expand Down Expand Up @@ -470,9 +470,9 @@
// Sometimes this is useful when avoiding shadowing
"no-underscore-dangle": 0,

// Unless it is needed such as IIFE rule then error
// Unless it is needed such as IIFE rule then warn as sometimes it can be useful for clarity
// "no-wrap-func": 2,
"no-extra-parens": 2,
"no-extra-parens": 1,

// We like multiple var statements
"one-var": 0,
Expand Down
63 changes: 0 additions & 63 deletions .jshintrc

This file was deleted.

0 comments on commit efa8fbc

Please sign in to comment.