├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── changelog.md ├── coffeelint.json ├── gulpfile.coffee ├── index.coffee ├── lib ├── reporter.coffee └── utils.coffee ├── package.json ├── readme.md └── test ├── coffeelint.json ├── fixtures └── irule.coffee ├── literate-detection.coffee ├── main.coffee └── reporter.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | coverage/ 4 | *.js 5 | *.log 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/changelog.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/coffeelint.json -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/index.coffee -------------------------------------------------------------------------------- /lib/reporter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/lib/reporter.coffee -------------------------------------------------------------------------------- /lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/lib/utils.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/readme.md -------------------------------------------------------------------------------- /test/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/test/coffeelint.json -------------------------------------------------------------------------------- /test/fixtures/irule.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/test/fixtures/irule.coffee -------------------------------------------------------------------------------- /test/literate-detection.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/test/literate-detection.coffee -------------------------------------------------------------------------------- /test/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/test/main.coffee -------------------------------------------------------------------------------- /test/reporter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janraasch/gulp-coffeelint/HEAD/test/reporter.coffee --------------------------------------------------------------------------------