grunt-pathlint
A Grunt task for checking pathnames.
Getting Started
If you haven't used grunt before, be sure to check out the Getting Started guide.
From the same directory as your project's Gruntfile and package.json, install this plugin with the following command:
npm install grunt-pathlint --save-dev
Once that's done, add this line to your project's Gruntfile:
grunt;
Inside your grunt.js
file add a section named pathlint
. This section
specifies the tasks. Each task takes sources and options as parameters.
Parameters
src
sources This sets the path of the files and directories to be checked in this task.
Options
file option
A regular expression for a file name in a path matched by src
. This validates
only the full filename and not the full path of the file.
Default is /^.+$/
which allows all names.
dir option
A regular expression for a directory name in a path matched by src
. A full
path of a directory will be split and validated by it's containing directory
names. For example the path foo/bar/baz/
will be split into foo
, bar
and
baz
. Each of these sections will be validated by this regular expression. It's
not required to add any path seperators into the regular expression.
Default is /^.+$/
which allows all names.
Example
pathlint js: src: 'js/src/**/*' options: file: /^+\.$/ dir: /^+$/ scss: src: 'scss/**/*' options: file: /^+\.$/ // Do not test for dirs here, so all pathes are valid...
Contribution
Tests & Validation
Run grunt
to lint and run the tests.