Open karolsw3 opened 4 years ago
Looks like you're missing a .stylelintrc.js
in your root folder (adjacent to your package.json) with these contents:
module.exports = {
"extends": "stylelint-config-standard",
"plugins": ["stylelint-scss"],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"no-descending-specificity": null
},
}
What's wrong? When I'm running
npm run start
after setting up the project with wizard, I'm getting this error:Error: No configuration provided for /Users/username/Documents/GitHub/repo-name/src/stylesheets/styles.scss at module.exports (/Users/username/Documents/GitHub/repo-name/node_modules/stylelint/lib/utils/configurationError.js:8:28) at searchForConfig.then.then.config (/Users/username/Documents/GitHub/repo-name/node_modules/stylelint/lib/getConfigForFile.js:55:15)
To Reproduce Steps to reproduce the behavior:
npm install
npm run start
Expected behavior Error not showing up.
Screenshots
Desktop:
I've tried installing and running it two times already.