You can use any editor you'd like, but in case you use Visual Studio Code we recommend the following extensions that are useful for this project:
To enable correct validation and to fix lint/style errors on save, add this to your VSCode settings.json
:
"css.validate": false,
"scss.validate": false,
"stylelint.validate": ["css", "scss"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true,
"source.fixAll.markdownlint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,