stylelint-config-recommended-scss
stylelint-config-recommended-scss copied to clipboard
Reset 'import-notation'
The combination of 'stylelint-config-standard' and 'stylelint-config-recommended-scss' leads to an interesting effect. The former contains this rule: 'import-notation': 'url' That leads to import 'mixins.scss' > 'import url('mixins.scss')
Imports are resolved to url() imports which is interpreted by SCSS as plain CSS imports and that stops mixin/function/variable imports from working.
I suggest adding 'import-notation': null as we might have CSS imports next to SCSS imports.