-
-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update eslint, prettier * Prettify files with new prettier * Use .prettierrc * Prettier should error, not warn * Disable no-return-assign This rule requires to write ref props in a too verbose way, we can safely disable it. * Upgrade jest * Remove react-hot-loader (not used) * Remove unused file * Use eslint-preset-env * Update yarn.lock * Use node:8.6 in circleci * Remove option forwarding * Install latest yarn * Upgrade eslint-config for airbnb * We don’t need to setup jsdom with latest jest * Upgrade babel-core * Update yarn.lock * No need to upgrade yarn * Upgrade transform-react-remove-prop-types and postcss-cli * Do not use --pure-lockfile * Fix issue with yarn cache * Add command names * Use cache on CircleCI
- Loading branch information
Showing
21 changed files
with
2,141 additions
and
1,546 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,12 +1,17 @@ | ||
{ | ||
"presets": [ | ||
"react", | ||
"es2015", | ||
"stage-1" | ||
"env" | ||
], | ||
"plugins": [ | ||
["transform-react-remove-prop-types", { | ||
"mode": "wrap" | ||
}] | ||
"transform-export-extensions", | ||
"transform-class-properties", | ||
"transform-object-rest-spread", | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"mode": "wrap" | ||
} | ||
] | ||
] | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} |
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
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
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
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
Oops, something went wrong.