Coding Standards

25 Sep 2024









VSCode is solid

I had some experience with VSCode prior to this course but I was following a very full proof guide that allowed or no mistakes or fuzzy areas. I’m glad that the guide set up for 314 had fuzzy areas as it allowed me to learn some more of the ins and outs of VSCode. As an IDE, I think it is one of the better ones, launching fast, supporting plenty of languages, and having amazing extensions like github copilot(I don’t like using it becuase it makes coding too easy) and style guides that help you write clean and concise code. I am a big fan of the multipl tabs in VSCode as it allows you to see different layers of your code quickly. In our case being able to have an html boilerplate, TypeScript code and the translated Javascript code on back-to-back-to-back tabs, makes coding and seeing possible mistakes a lot easier.

I Love ESLint

I was introduced to ESLint style guide in my ICS 212: Program Structures class. I would have to run a script directly in shell that would look at my C code and return 100s of errors. Whitespace there, delete it, extra spaces, delete those, bad indenting, I will never click tab again. Although it was tedious running the script over and over again until I had no coding style errors, it made my code legible. Function indenting easily shows you the scope of variable and other features in different curly braces({}). In VSCode, you don’t even need t run a script, you can use an extension that treats coding style issues as errors, rewiring your brain to write goode, legible code. Having proper coding style will hopefully make it easier for others to look at my code and dissect it.

Closing Statement

Although it can be annoying at first, ESLint is agreat coding style guide that helps you better understand what all your code does and organizes everything into very legible lines. VSCode has treated my well and I see its potential as I start toi use more and more of its features. I look forward to continue using ESLint and VSCode to write, clean code in a very functional IDE.