I am really sorry for this newbie question but I can't see how solve that...
I installed linter-stylelint and tried to configure it like it's said there: https://atom.io/packages/linter-stylelint
So: - I placed a stylelint.config.js file in my project. - In the settings, I checked Use standard - But can't see what I have to do to "Add a stylelint section in your package.json"
On my Mac I see the file: /Users/eric/node_modules/stylelint-config-standard But I don't know what code do I have to insert inside...
By the way, when I try to use linter-stylelint in a css file I get the error message: Unable to parse stylelint configuration Unexpected token :
In my stylelint.config.js, I have the following code for now:
{
"extends": "stylelint-config-standard"
"rules" {
"no-unsupported-browser-features": [ true, { "severity": "warning" }]
}
}
Thanks if you can help me! ;)
Paul