-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: When creating config file set
.yaml
extension
- Explicitly set config extension to `.yaml` as recommended in YAML specs - Update dependencies
- Loading branch information
1 parent
4449cf9
commit 2db1bc0
Showing
9 changed files
with
552 additions
and
444 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
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,7 +1,8 @@ | ||
module.exports = { | ||
'**/*.?(c)js': (filenames) => [ | ||
`eslint --cache --fix ${filenames.join(' ')}`, | ||
'ava', | ||
'ava --fail-fast', | ||
], | ||
'**/*.*': 'prettier --write --ignore-unknown', | ||
// Format supported non JavaScript files | ||
'**/*.!(?(c)js)': 'prettier --write --ignore-unknown', | ||
} |
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.