-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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
[Git] Ignore jsconfig.json (VSCode config file) #4011
Conversation
@jakeboone02 Why not adding |
I could certainly be wrong, but I believe the file is useful to have committed in a repo for certain situations, so adding it to the global I agree you probably don't want to manage every IDE config in the world, but handling the few most frequently used on any given project shouldn't add too much overhead and can ever-so-slightly lower the barriers to new contributors :). |
That's a very good point. |
@oliviertassinari - I'm with @jakeboone02 here. I hadn't considered global |
@mbrookes, can you clarify? Your comment seems to contradict itself but I'm probably misreading it. |
@jakeboone02 - thanks - rephrased the words after 'I don't think' to clarify. |
Got it. Thanks. |
VSCode needs a
jsconfig.json
file in the root folder of a project to enable ES2015 syntax recognition. Options are 1) to include the file in the repo, or 2) add it to.gitignore
. A quick search leads me to believe that option 2 is right for this project.See Angular and other examples.