-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make prettier output more human readable, improve documentation of li…
…nting (#282) * Use prettier --check instead of --list-different argument --check provides a more useful output: ``` Checking formatting... [warn] .github/dependabot.yml [warn] Code style issues found in the above file. Run Prettier with --write to fix. ``` Compared to --list-different, which is meant to be used when machine-readable output is needed, for example to pipe the list of different files to another command: ``` .github/dependabot.yml ``` * Add code quality section to contributing guide * Add pull request template to remind contributors of lint steps
- Loading branch information
Showing
3 changed files
with
43 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Description | ||
|
||
<!-- | ||
Insert Pull Request description here. | ||
What does this PR change? Why? | ||
--> | ||
|
||
## Checklist | ||
|
||
- [ ] PR has a descriptive title and content. | ||
- [ ] PR has one of the labels: documentation, bug, enhancement, feature, maintenance | ||
- [ ] Checks are passing. | ||
Failing lint checks can be resolved with: | ||
- `pre-commit run --all-files` | ||
- `jlpm run lint` |
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