Mohammad Jawad Barati
Mohammad Jawad Barati
خواندن ۲ دقیقه·۴ سال پیش

از یه IDE قوی مثل VSCode استفاده می‌کنی؟ چرا؟

من اینجا یکمی چالشی مینویسم. چرا از یه IDE استفاده بکنم که فقط میاد منو وابسته میکنه؟ منظورم اینه که وقتی، اول کاری و از intellisense های لعنتی VSCode یا هر IDE پیشرفته دیگه‌ای استفاده می‌کنی تنها بلایی که سر خورت میاری اینه که کد زنی رو یاد نمیگیری و اگه یه روز ازت بپرسن داستان چیه و چجوری یه وب اپ اکسپرسی باید بالا بیاری نمیدونی.

پس پیشنهادم اینه که اگه نمیخوای وقتی ازت یه سوال در مورد نحوه کد زنی میپرسن یه همچین تصویری تو ذهنت نقش ببنده و بهش برگردی بگی که یه سیستم بهت با یه IDE پیشرفته مثل VSCode بده تا بتونی بهش جواب دی باید این تنظیمات رو روی VSCode خودت پیاده بکنی.

یه دایرکتوری توی root پروژت ایجاد بکن به اسمه:

.vscode

بعد توش یه فایل settings.json بساز:

settings.json:

{ // OPTIONAL WORD WRAPPING // Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, iewportWidthInColumns). &quoteditor.wordWrap&quot: &quotoff&quot, // Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'. &quoteditor.wrappingIndent&quot: &quotnone&quot, // TURN OFF AUTOCOMPLETION // Controls if quick suggestions should show up or not while typing &quoteditor.quickSuggestions&quot: false, // Controls the delay in ms after which quick suggestions will show up &quoteditor.quickSuggestionsDelay&quot: 90, // Enables parameter hints &quoteditor.parameterHints&quot: false, // Controls if the editor should automatically close brackets after opening them &quoteditor.autoClosingBrackets&quot: &quotlanguageDefined&quot, // Controls if the editor should automatically format the line after typing &quoteditor.formatOnType&quot: false, // Controls if suggestions should automatically show up when typing trigger characters &quoteditor.suggestOnTriggerCharacters&quot: false, // Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. &quoteditor.acceptSuggestionOnEnter&quot: &quotoff&quot, &quothtml.autoClosingTags&quot: false, &quothtml.format.enable&quot: false, &quothtml.validate.scripts&quot: false, &quothtml.suggest.html5&quot: false, &quothtml.format.extraLiners&quot: &quot&quot }

البته میتونی تیکه html شو خودت حذف کنی یا بذاری.

رفرنس

vscodeidenodejsintellisenseautocomplete
برنانه نویس، مدرس، محقق. عاشق انیمه هستم و دنبال چالش ها جدید.
شاید از این پست‌ها خوشتان بیاید