You can edit the Project using any editor or IDE, but there are a few extra steps that you can take to make sure your coding experience is as good as it can be.
There are a couple of plugins that we recommend you install to speed up your development workflow:
- Prettier: Opinionated code formatter enforces a consistent styles.
- ESLint: Statically analyzes JavaScript code to quickly find problems.
You can also get VSCode to understand your project's static code analysis setup. If you do this:
- You'll see any warnings or errors directly within VSCode
- VSCode can also automatically fix or format your code for you
To make this happen, install both the ESLint and Prettier extensions for VSCode and add the following to either your User or Workspace Settings:
{
"editor.formatOnSave": true,
"prettier.eslintIntegration": false,
"javascript.validate.enable": false,
"eslint.run": "onSave"
}
Otherwise, you can use the comment to tell eslint to skip the fix
// eslint-disable-line