We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It'd be great if code could follow consistent formatting with the rest of Stack ecosystem code.
The config is shared as a npm package here https://www.npmjs.com/package/@stacks/prettier-config
The text was updated successfully, but these errors were encountered:
The following commit message should fix this issue: 92e50b1
Sorry, something went wrong.
I see that @stacks/prettier-config has been added as a package, but it hasn't been configured.
@stacks/prettier-config
It can be set by adding this line to the package.json, otherwise editors don't know which config to use.
package.json
"prettier": "@stacks/prettier-config",
Further, it can be a devDependency, not a dependency.
devDependency
dependency
We have this command ran as a github action to ensure that all code is formatted consistently
"lint:prettier": "prettier --check \"{src,tests}/**/*.{ts,tsx}\" \"*.{js,json}\"",
No branches or pull requests
It'd be great if code could follow consistent formatting with the rest of Stack ecosystem code.
The config is shared as a npm package here https://www.npmjs.com/package/@stacks/prettier-config
The text was updated successfully, but these errors were encountered: