You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the features of SCSS Lint that I found useful was the ability to have the results written to a file, with the ability to specify the file path. This would be a really useful addition.
I think it would be useful to silence the console output if writing to a file is chosen.
The text was updated successfully, but these errors were encountered:
The way Sass Lint is set up, there is no logging of output. Results are passed to the format function to format them for logging, but each implementation chooses their own way of handling output.
The actual output of linting is simply an array of detects. The formatter function is what creates turns the array in to usable output. Currently, it uses ESLint's Stylish formatter, but any of those formatters could be used in theory.
The question that needs to be discussed is how to best describe what the output file should be and what formatter to use, especially in config.
I would love to have this as well, particularly with junit or checkstyle XML output so I can easily integrate sass-lint into my continuous integration server.
One of the features of SCSS Lint that I found useful was the ability to have the results written to a file, with the ability to specify the file path. This would be a really useful addition.
I think it would be useful to silence the console output if writing to a file is chosen.
The text was updated successfully, but these errors were encountered: