# jshint-gralde **Repository Path**: zacker330/jshint-gralde ## Basic Information - **Project Name**: jshint-gralde - **Description**: jshint的gradle插件 - **Primary Language**: Groovy - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 58 - **Forks**: 1 - **Created**: 2014-07-06 - **Last Updated**: 2025-03-31 ## Categories & Tags **Categories**: ci **Tags**: None ## README Jshint Gradle Plugin ==================== ## Installation determined ## Configuration 1. config jshint options create a named `jshintConfig.json` file at `src/main/resources`. jshintConfig.json file as below: { "undef":true, "unused":true . . . } [jshint options](http://www.jshint.com/docs/options/) 1. config jshint-gradle plugin add the jshint closure at build.gradle: jshint { inputDirs = your_input_dir_path // require includes = ["asset/*.js"] // require excludes = ["**/compase/*.js"] // require version = '2.4.3' // option. the version of jshint is default 2.4.3 }