This repository was archived by the owner on Aug 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
chore: use the same linter settings as the monorepo #214
Merged
Conversation
This file contains hidden or 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
✨ Coder.com for PR #214 deployed! It will be updated on every commit.
|
7e56ec1
to
128e20c
Compare
128e20c
to
0d3f1fb
Compare
greyscaled
reviewed
Mar 30, 2021
0d3f1fb
to
eb3cd8f
Compare
jawnsy
commented
Mar 30, 2021
greyscaled
approved these changes
Mar 30, 2021
eb3cd8f
to
260b0c5
Compare
jawnsy
commented
Mar 30, 2021
package.json
Outdated
"fmt": "prettier --check '**/*.{json,md,yaml,yml}'", | ||
"fmt:fix": "prettier --write '**/*.{json,md,yaml,yml}'", | ||
"format:check": "prettier --check '**/*.{css,html,js,json,jsx,ts,tsx,yaml,yml}'", | ||
"format:write": "prettier --write '**/*.{css,html,js,json,jsx,ts,tsx,yaml,yml}'", | ||
"lint": "markdownlint '**/*.md'", | ||
"lint:fix": "markdownlint --fix '**/*.md'", | ||
"prepare": "husky install" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
going to move prepare up to the top (and keep all the lifecycle hooks above the other scripts)
260b0c5
to
8d271df
Compare
Use the same script names (e.g. yarn format:write) and extension settings as we do in the monorepo, so that it's easier to switch between projects
8d271df
to
976d1f1
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Use the same script names (e.g. yarn format:write) as we do in
the monorepo, so that it's easier to switch between projects.