-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove deprecated functionality and simplify code
Deprecated multiple options arguments has been removed in favor of an options object. Deprecated edit object has been removed in favor of an edit function. These functionalities have been deprecated for ages and their removal allows for a significant simplification of the code. BREAKING CHANGE: Multiple options arguments and edit object support has been removed
- Loading branch information
Showing
5 changed files
with
3,684 additions
and
54 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,10 +1,6 @@ | ||
{ | ||
"extends": "airbnb-base", | ||
"rules": { | ||
"consistent-return": "off", | ||
"no-buffer-constructor": "off", | ||
"no-param-reassign": ["error", {"props": false}], | ||
"prefer-destructuring": "off", | ||
"strict": "off" | ||
} | ||
"extends": "airbnb-base", | ||
"rules": { | ||
"consistent-return": "off" | ||
} | ||
} |
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,8 +1,3 @@ | ||
# Only apps should have lockfiles | ||
yarn.lock | ||
package-lock.json | ||
npm-shrinkwrap.json | ||
|
||
### Node ### | ||
# Logs | ||
logs | ||
|
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.