├── .gitignore ├── .gitmodules ├── .jshintignore ├── .jshintrc ├── CHANGELOG.md ├── Jakefile ├── LICENSE ├── README.md ├── bin └── hint ├── configure ├── example ├── defaults.json └── reporter.js ├── lib ├── cli.js ├── hint.js └── reporters │ ├── checkstyle.js │ ├── default.js │ ├── jslint_xml.js │ └── non_error.js ├── package.json ├── tasks ├── lint.js └── test.js └── test └── unit ├── cli.js └── hint.js /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | node_modules 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | packages 3 | .git 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/.jshintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/Jakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/README.md -------------------------------------------------------------------------------- /bin/hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/bin/hint -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/configure -------------------------------------------------------------------------------- /example/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/example/defaults.json -------------------------------------------------------------------------------- /example/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/example/reporter.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/lib/hint.js -------------------------------------------------------------------------------- /lib/reporters/checkstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/lib/reporters/checkstyle.js -------------------------------------------------------------------------------- /lib/reporters/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/lib/reporters/default.js -------------------------------------------------------------------------------- /lib/reporters/jslint_xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/lib/reporters/jslint_xml.js -------------------------------------------------------------------------------- /lib/reporters/non_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/lib/reporters/non_error.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/package.json -------------------------------------------------------------------------------- /tasks/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/tasks/lint.js -------------------------------------------------------------------------------- /tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/tasks/test.js -------------------------------------------------------------------------------- /test/unit/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/test/unit/cli.js -------------------------------------------------------------------------------- /test/unit/hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshint/node-jshint/HEAD/test/unit/hint.js --------------------------------------------------------------------------------