prettier-stylelint
prettier-stylelint copied to clipboard
code > prettier > stylelint > formatted code
Are there any plans to support these flags? https://prettier.io/docs/en/cli.html#list-different https://prettier.io/docs/en/cli.html#check
``` ./node_modules/.bin/prettier-stylelint src/assets/css/ahu.less --quiet Warning: `parser` with value "postcss" is deprecated. Use "css", "less" or "scss" instead. ``` Not sure if it's because of prettier or this plugin. https://prettier.io/docs/en/options.html#parser
```less @import url('static/styles/common.var.less'); @import url("./index.lg.less"); @import url("./index.md.less") screen and (max-width: 768px); @import url("./index.xs.less") screen and (max-width: 480px); ``` use `prettier-stylelint` format ```shell prettier-stylelint --write ``` ```less @import url('static/styles/common.var.less'); @import url('./index.lg.less');...
Would be really cool to see updated dependencies as to remove warnings generator by outdated ones. Thanks a lot for this package and your work! 🙏
Seems prettier sometimes resolves with its options being `null` which blows up our 'resolve with defaults’ function. This makes sure we default `prettierOptions` to being an empty object. Fixes #9
After starting prettier-stylelint --write it is expected, that lines, marked like disabled or ignored, wouldn't be changed. But they are changing. P.S: To .stylelintrc was added ``` "extends": "./node_modules/prettier-stylelint/config.js" ```...
Hi, I just need clarification of if this is supposed to work the same as prettier-eslint? Is the intention of this to format your code via prettier, and then pass...
Illustration: Not sure why this is the case, it's not alphabetical either and of course this can lead to broken code if you overwrite properties of mixins after the mixin.
When I try to run prettier-stylelint via CLI ```prettier-stylelint```, I get the following error: ``` module.exports.silent = moduleId => resolveFrom.silent(process.cwd(), moduleId); ^ TypeError: resolveFrom.silent is not a function at Function.module.exports.silent.moduleId...
After running `prettier-stylelint '**/*.scss'` — leaving `--write` off for now just to dry-run — I'm getting the following error: ``` prettier-stylelint [ERROR]: There was an error formatting "lib/showbie-previewer/addon/components/sbe-preview/text-on-page/styles.scss" TypeError: Cannot...