-
Notifications
You must be signed in to change notification settings - Fork 167
Disable javascript validation #209
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
Comments
👍 I am looking for this feature too |
Just to understand your use case better... You want to run the Flow server on JS files and simultaneously this server on the TS files? |
No, I'd like to run both the flow server and ts server on the JS files. Flow will handle general linting, and ts will handle the 'rest'. For example, a package has no flow-typed definition, but it has *.d.ts definition. So TS will be handy for that particular package. I am using this server in Sublime's LSP-typescript. In VSCode, setting I don't know amiralies's use case, but I assume same as mine. |
Yeah same. |
i am looking for this option. hope it will be available soon |
Do you really need to disable all diagnostics in js files? There is a option to disable specific diagnostics with the following workspace setting |
Hey! Did someone find a solution to this ? I don't understand how to implement @predragnikolic solution |
While it's possible to disable this in VSCode, it's not an option in Neovim. It would be helpful to allow the setting of |
I use this server alongside flow lsp. in vscode it's possible to set
javascript.validate.enable
tofalse
so tsserver doesn't report that type annoations are not allowed in js files.is there anyway to achieve this?
in general can we have tsserver options supported in this server?
The text was updated successfully, but these errors were encountered: