├── .gitignore ├── .jshintrc ├── LICENSE.md ├── README.md ├── index.js ├── lib ├── atom-jshint.js └── worker.js ├── package.json ├── spec ├── atom-jshint-spec.coffee └── atom-jshint-view-spec.coffee └── styles └── atom-jshint.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/index.js -------------------------------------------------------------------------------- /lib/atom-jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/lib/atom-jshint.js -------------------------------------------------------------------------------- /lib/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/lib/worker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/package.json -------------------------------------------------------------------------------- /spec/atom-jshint-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/spec/atom-jshint-spec.coffee -------------------------------------------------------------------------------- /spec/atom-jshint-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/spec/atom-jshint-view-spec.coffee -------------------------------------------------------------------------------- /styles/atom-jshint.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joezo/atom-jshint/HEAD/styles/atom-jshint.less --------------------------------------------------------------------------------