Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmendiara/grunt-gjslint
Validate javascript with Google closure linter in node with grunt
https://github.com/jmendiara/grunt-gjslint
Last synced: 2 days ago
JSON representation
Validate javascript with Google closure linter in node with grunt
- Host: GitHub
- URL: https://github.com/jmendiara/grunt-gjslint
- Owner: jmendiara
- License: mit
- Created: 2013-04-18T09:50:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-20T23:15:45.000Z (over 8 years ago)
- Last Synced: 2024-04-26T14:45:45.283Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 27.3 KB
- Stars: 18
- Watchers: 3
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# grunt-gjslint
> Validate files with Google Linter.
## Getting Started
This plugin requires Node `~0.8.19` (for managing [peerDependencies](http://blog.nodejs.org/2013/02/07/peer-dependencies/)), Grunt `~0.4.1` and *just* python2 installed.If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install grunt-gjslint --save-dev
```One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-gjslint');
```## The `gjslint` and `fixjsstyle` tasks
Run this tasks with the `grunt gjslint` or `grunt fixjsstyle` commands.### Overview
In your project's Gruntfile, add sections named `gjslint` and `fixjsstyle` to the data object passed into `grunt.initConfig()`. Some of the flags passed to gjslint don't work with fixjsstyle.```js
grunt.initConfig({
gjslint: {
options: {
flags: [
'--disable 220', //ignore error code 220 from gjslint,
'--flagfile .gjslintrc' //use flag file
],
reporter: {
name: 'console' //report to console
},
force: false, //don't fail if python is not installed on the computer. Default: `true`
pythonPath: '/your/path/to/python2' //closure-linter only works with python2. Specify the path to it. Default: `python`
},
lib: { //specify your targets, grunt style.
src: ['lib/module/**/*.js', 'lib/foo.js'],
},
test: {
src: '<%= jshint.test %>',
}
},
fixjsstyle: {
options: {
flags: [
'--disable 220' //ignore error code 220 from gjslint
],
reporter: {
name: 'console'
}
},
all: {
src: '<%= jshint.all %>'
}
}
})
```As this is a Multitask, you can specify several targets to be called sharing the same root options
### Documentation
grunt-gjslint uses [node-closure-linter-wrapper](https://github.com/jmendiara/node-closure-linter-wrapper)
to lint filesPlease, refer to [node-closure-linter-wrapper documentation](https://github.com/jmendiara/node-closure-linter-wrapper)
for `flags`, `reporter` and `pythonPath` reference.`options.force` flag is a custom option that when disabled, will not fail the grunt task when python is not installed on
the computer. It defaults to `true`## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Lint and test your code using [Grunt](http://gruntjs.com/).## Release History
* v0.1.6: Huge amount of files in windows support. @ganxiyun
* v0.1.5: added fixjsstyle task
* v0.1.4: bug fixing in filenames with whitespaces. Thanks to @moelders
* v0.1.3: bug fixing. Thanks to @dcantelar
* v0.1.0: First version