Lint LESSCSS files with grunt
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-lesshint --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks( 'grunt-lesshint' );
In your project's Gruntfile, add a section named lesshint
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
lesshint: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
Type: Boolean
Default value: false
Set force
to true
to report lesshint errors but not fail the task.
Type: String
or true
Default: null
If set to true
, no config will be sent to lesshint and lesshint will search for .lesshintrc
files relative to the files being linted.
If a filename is specified, options and globals defined therein will be used. The lesshintrc
file must be valid JSON and looks something like this:
{
"spaceAfterPropertyColon": "no_space",
"spaceBeforeBrace": "no_space"
}
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Date | Version | Changes |
---|---|---|
2016-01-26 | 1.1.1 | Update grunt-contrib-jshint to 0.12.0 |
2015-10-20 | 1.1.0 |
|
2015-09-08 | 1.0.0 | Switch lesshint dependency from ^ to ~ because of the Caret: Major Zero issue. Note: Bumping to 1.0.0 to avoid the issue for this repo |
2015-09-01 | 0.9.1 | Fix readme and version for 0.9.0 and 0.9.1 |
2015-09-01 | 0.9.0 |
|
2015-08-27 | 0.8.0 |
|
2015-06-25 | 0.7.0 |
|
2015-06-28 | 0.6.1 | Update lesshint to 0.6.2 |
2015-05-28 | 0.6.0 | Update lesshint to 0.6.1 |
2015-05-25 | 0.5.1 | Fix readme and version for 0.5.0 |
2015-05-25 | 0.5.0 | Add CI support with Travis-ci and some experimental coveralls.io support |
2015-05-25 | 0.4.0 | Add support for using custom .lesshintrc files |
2015-05-21 | 0.3.1 | Forgot to update everything for the 0.3.0 release.... |
2015-05-21 | 0.3.0 |
|
2015-05-19 | 0.2.7 | Update lesshint to 0.5.1 |
2015-05-18 | 0.2.6 | Fix NPM publish |
2015-05-18 | 0.2.5 | Update lesshint to 0.5.0 |
2015-05-11 | 0.2.3 | Update lesshint to 0.4.1 |
2015-05-11 | 0.2.2 |
|
2015-05-11 | 0.2.1 | Update lesshint to 0.4.0 |
2015-05-03 | 0.2.0 | Add support for passing options to lesshint |
2015-05-03 | 0.1.6 | Update lesshint to 0.3.1 |
2015-05-03 | 0.1.5 | Update lesshint to 0.3.0 |
2015-04-27 | 0.1.4 |
|
2015-04-24 | 0.1.3 |
|
2015-04-22 | 0.1.2 |
|
2015-04-21 | 0.1.1 | Readme fixes |
2015-04-21 | 0.1.0 | Initial release |