-
-
Notifications
You must be signed in to change notification settings - Fork 38
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
Making ts-standard easier to use #102
Comments
Any thoughts ? @toddbluhm |
@divlo Thanks for the feedback. Initially, my goal for this package was to mimick I'd say go for it! It might be cool to have this package be a test-bed for new Make sure all new features are behind some sort of flag and opt-in only. All existing |
Alright, I will try to open a pull request to add the I just cloned the repo but when I run |
Our organization on npm is called If you're keen to work on these issues, I'd love to solve it in |
I was going through the issues of
standard
in the original repo, and I saw that issue : standard/standard#1356What problem do you want to solve?
I feel like
ts-standard
should follow the principles/rules as close as possible ofstandard
.What do you think is the correct solution to this problem?
Build in
snazzy
so users can dots-standard --report=snazzy
and get pretty output maybe we can add package.json options as well.Also, in the
standard
issue, they're talking aboutstandard-json
andstandard-tap
.Build-in
prettier
would be awesome, maybe if we dots-standard --format
, it automatically runsprettier
+ts-standard --fix
.prettier
also runs in.md
,.json
,.yaml
,.css
files etc. not only in.js
or.ts
I see that this project is using this script in
package.json
:"lint": "prettier --write '**/*.{ts*,js*,yml}' && bin/cmd.js --fix && tsc --noEmit"
and this
prettier
configuration :What if we would not need to do all these configurations ourselves and
ts-standard
will do it for us ?Are you willing to submit a pull request to implement this change?
Yes of couse!
The text was updated successfully, but these errors were encountered: