From the course: Node.js: Testing and Code Quality

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Adding EditorConfig to a project and IDE

Adding EditorConfig to a project and IDE

From the course: Node.js: Testing and Code Quality

Adding EditorConfig to a project and IDE

- It could take hours to add editor config to a project and editor or more likely just a minute or two. Adding editor config support to an editor is well-documented at editorconfig.org. In fact, some editors already include native support, so you might not need to do anything. Others like vs code require an open source plugin or extension. Let's get started. Switch over to vs code. Launch vs code quick open by pressing control and P. Type the following command E X T, space install space editor, config dot editor, config and press enter to install the extension. After a moment, the extension should be installed and listed within the extensions marketplace on the sidebar. That's basically it. If you click on the extension that you just installed, you'll see some release notes and some supported properties. No configuration is needed so click the Explorer icon in the activity bar to return to our workspace. Now that the…

Contents