├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── example ├── app.js └── gulpfile.js ├── index.js ├── package.json ├── reporters └── stylish.js └── test ├── fixtures ├── testFile1.js ├── testFile2.js └── testFile3.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/README.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/example/app.js -------------------------------------------------------------------------------- /example/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/example/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/package.json -------------------------------------------------------------------------------- /reporters/stylish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/reporters/stylish.js -------------------------------------------------------------------------------- /test/fixtures/testFile1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/test/fixtures/testFile1.js -------------------------------------------------------------------------------- /test/fixtures/testFile2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/test/fixtures/testFile2.js -------------------------------------------------------------------------------- /test/fixtures/testFile3.js: -------------------------------------------------------------------------------- 1 | var a = 1; 2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgeee/gulp-standard/HEAD/test/index.js --------------------------------------------------------------------------------