How to setup eslint and stylelint to have errors displayed inside VS Code editor, when we have that kind of structure of the project:
front/node_modules
front/.eslintrc.json
front/.stylelintrc.json
front/js/
front/scss/
backend/js/
backend/scss/
Currently errors are only displayed in files from "front" folder. What else I need to configure to be able to see errors inside the VS Code editor while I'm editing files from "backend" folder?