Last active
March 31, 2024 07:31
-
-
Save DoctorDerek/3bfb3ef6f22b69750c8af542232efab1 to your computer and use it in GitHub Desktop.
Recommended settings.json file for new web developers setting up VS Code according to https://medium.com/p/65aaa5788c0d/ by Dr. Derek Austin 🥳
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.autoSave": "onFocusChange", | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code SemiBold, Consolas, 'Courier New', monospace", | |
"editor.fontSize": 20, | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.tabSize": 2, | |
"prettier.requireConfig": false, | |
"prettier.semi": false, | |
"editor.codeActionsOnSave": { "source.fixAll": true }, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"eslint.alwaysShowStatus": true, | |
"html.format.enable": false, | |
"htmlhint.enable": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"workbench.colorTheme": "Monokai Vibrant", | |
"workbench.iconTheme": "vscode-icons", | |
"rainbowTags.allowEverywhere": true, | |
"emmet.triggerExpansionOnTab": true, | |
"javascript.implicitProjectConfig.checkJs": true | |
} |
No, it turns on type checking for JS files. Here's what I could find:
microsoft/vscode#25410
Best regards,
Derek
Derek R. Austin, PT, DPT, MS, BCTMB, LMT, CSCS
Read my blog on Medium: https://medium.com/@DoctorDerek
Join me on LinkedIn: https://www.linkedin.com/in/derek-austin/
…On Fri, Jan 29, 2021, 11:48 PM TacitBrawler ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
``line 34. "javascript.implicitProjectConfig.checkJs": true
Is that deprecated?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://gist.github.com/3bfb3ef6f22b69750c8af542232efab1#gistcomment-3613339>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFZ3D24ENENQLAMYUBU2XTS4OFR5ANCNFSM4WZ6FKYQ>
.
@TacitBrawler Hey, I couldn't find the reference for that deprecation in January, but you were absolutely right.
I've updated the Gists.
javascript.implicitProjectConfig.checkJS
-> js/ts.implicitProjectConfig.checkJS
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
``line 34. "javascript.implicitProjectConfig.checkJs": true
Is that deprecated?