Open tinchoz49 opened 4 years ago
I believe ts supports jsconfig.json aswell.
You need to configure typescript and you need to run tsc && tsdocstandard together.
The linter won’t work if then typescript checker fails.
As for semistandard. I can look into allowing rule overwrites like standardx
I added a usage section ( https://github.com/Raynos/tsdocstandard#usage ).
Thanks, I was thinking on work in a PR to add the support for semistandard. I don't know yet if it should be through a flag or maybe by detecting semistandard installed locally?
adding a --semi
flag seems pretty straight forward. ( https://github.com/standard/eslint-config-semistandard/blob/master/.eslintrc.js )
It looks like it's literally two eslint rules. setting those two rules programatically should be fine.
It looks like it's literally two eslint rules. setting those two rules programatically should be fine.
That's right
Hey @Raynos
First I want to share with you how I was using tsdocstandard. Maybe you can take something for the documentation.
In a clean project I installed tsdocstandard local using an alias:
npm install -D standard@npm:tsdocstandard
By doing this I can use tsdocstandard with vscode-standard and it works very well.
My questions are:
{ "allowJs": true,"checkJs": true }
.