-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fix: Adjusting file access that was clashing with uncontrolled promises * review: Adding code review changing and linting * fix(cli): rectify an async call Co-authored-by: Maximilian Berkmann <[email protected]>
- Loading branch information
1 parent
cdac9d4
commit cc99369
Showing
5 changed files
with
215 additions
and
206 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,13 +1,14 @@ | ||
module.exports = { | ||
extends: [ | ||
require.resolve('eslint-config-kentcdodds'), | ||
require.resolve('eslint-config-kentcdodds/jest'), | ||
], | ||
require.resolve('eslint-config-kentcdodds'), | ||
require.resolve('eslint-config-kentcdodds/jest'), | ||
], | ||
rules: { | ||
'func-names': 0, | ||
'babel/camelcase': 0, | ||
'import/extensions': 0, | ||
'consistent-return': 0, | ||
'no-process-exit': 0, | ||
} | ||
'no-continue': 0, | ||
}, | ||
} |
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.