-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from dcneiner/feature-upgrade-react-16
Upgraded to React 16, enzyme, latest eslint config Removed jscs
- Loading branch information
Showing
8 changed files
with
5,961 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
module.exports = { | ||
extends: [ "leankit", "leankit/es6" ], | ||
parser: "babel-eslint", | ||
plugins: [ "babel" ], | ||
rules: { | ||
"no-unused-expressions": 2, | ||
"prefer-arrow-callback": 0, | ||
"init-declarations": 0, | ||
|
||
// plugin for babel eslint to fix some problems with the core rules | ||
"generator-star-spacing": 0, | ||
"babel/generator-star-spacing": "error", | ||
"object-curly-spacing": 0, | ||
"babel/object-curly-spacing": [ "error", "always" ], | ||
"object-shorthand": 0, | ||
"babel/object-shorthand": [ "error", "always" ], | ||
"arrow-parens": 0, | ||
"babel/arrow-parens": [ "error", "as-needed" ], | ||
"babel/no-await-in-loop": "error" // nothing to disable | ||
} | ||
extends: [ "leankit", "leankit/es6", "leankit/babel" ] | ||
}; |
Oops, something went wrong.