Masaaki Morishita
Masaaki Morishita
@macgyver stylefmt is not large project like facebook/flux, so feel free to send me PR :)
@cwick Now, stylefmt dose not support PostCSS syntax of Less. Sorry, please wait until the next minor update.
@robbyking3 Inline comments are used in SCSS syntax, so stylefmt can format it. Some Less syntaxes are used in the other one, but we cannot format all of Less code.
@vladimir-polyakov We have supported .less and .pcss files extentions by https://github.com/morishitter/stylefmt/pull/301 but stylefmt can't format all of less and postcss plugins customized syntaxes. > Is there any other tool out...
Now, stylefmt can handle [many stylelint rules](https://github.com/morishitter/stylefmt#stylelint-rules-that-stylefmt-can-handle), so I decided to implement `--onlyStylelint` option. :)
@coreybruyere Can you see me your configuration file? We can specify its path with `--config` option. https://github.com/morishitter/stylefmt/blob/86c43a69cf698a974a6b503af3d2f403e7b92ba4/README.md#in-command-line
@coreybruyere I'm sorry, I'm late. You can set the option in gulp-stylefmt. Please refer the following code :) ```js gulp.task('stylefmt', () => { return gulp.src('assets/stylesheets/**/*.scss') .pipe(stylefmt({ configFile: 'path-to-stylelint-config-file' })) .pipe(gulp.dest('assets/stylesheets/'));...
It seems nice! But, it is only for selectors. Now, I have no idea to handle comments and `url` as you said. Thanks for your idea :)
@Braden1996 It's the default formatting rules of stylefmt. Is formatted code not be able to run with Lost?
@pattiereaves Great! Please feel free to send your PR :)