-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Some things missing that I find useful #13
Comments
@dominikwilkowski There's an open PR for cypress integration #11 |
I saw |
Let me know if you feel there's anything missing in the PR. Happy to fill in the gaps! |
Probably moving away from this as a pattern after Tarang added |
@dominikwilkowski does prettier expose a |
Not that I know of anything, sorry |
Just opinions...
.editorconfig
now please don't shoot me but if we include prettier we should add the editorconfig with the same default settings as the default settings of prettier
prettier config and
.prettierignore
leave empty but give people a space where they can put things in
npm scripts for prettier and prettier tests
"format": "prettier --write \"**/*.{js,md,mdx,json}\"",
"test:format": "prettier --list-different \"**/*.{js,md,mdx,json}\"",
cypress integration
cause I think it's hard and would add a lot of value
stuff like
yarn start [component]
"start": "/bin/sh -c 'cd components/${1:-$0} && yarn start'",
Nice to have
yarn create [component]
that takes a bunch of files from the.template/
folder and fills in some bitshelpers/
folder with ... helper scripts"dep:test": "manypkg check && preconstruct build || preconstruct dev",
"dep:fix": "manypkg fix",
The text was updated successfully, but these errors were encountered: