-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error code undefined #10
Comments
What happens if you run this on the path where you have the gulpfile? scss-lint TechSmithSass/*.scss --format XML |
Shows me the proper XML. |
I can not reproduce the error. Could you add exec(command, function (error, report) {
console.log(error);
... |
I apologize for the delay. [Error: stdout maxBuffer exceeded.] |
I too have the same error which appears after I upgraded my scss-lint gem from 0.25.1 to 0.27.0. My config is essentially identical with the 'bundleExec': true parameter set. gulp-scss-lint is version 0.1 Reverting the gem to 25.1 fixes the error. bundle exec scss-lint sass/*.scss --format XML
|
ahmednuaman/grunt-scss-lint#63 - think this needs to be changed, that's what grunt-scss-lint had to do. |
Thanks, I added the maxBuffer option |
Setting maxBuffer to false made no difference for me, however, setting it to 524288 worked, which I came across in sun-zheng-an/gulp-shell#13. Two questions. Firstly, why isn't false working? Secondly, why is there no config example for the maxBuffer option in the readme, yet there is for every other option? Whilst an obvious assumption is to just add maxBuffer to the scsslint config, i.e. For the sake of consistency in the documentation, and also to remove any possible need to make assumptions and cause needless confusion, I'd add it. Also probably an idea to explain what the maxBuffer integer actually is and a suggested range rather than just saying "number", which explains nothing and could result in a user questioning "number of what?" "0 or 1?" "Is this talking about memory allowed to execute? What's the default value which clearly isn't enough? Is it measured in bytes or mb?" and so on. A little elaboration on this could help others to avoid having to hunt for answers, like I did. |
Sorry for my mistakes in the documentation Thanks for your suggestions, I have made some changes. I removed the Thanks |
If I use
scss-lint TechSmithSass/*.scss
everything is just fine. I'm on scss-lint .26 and gulp-scss-lint .11The text was updated successfully, but these errors were encountered: