├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmrc ├── .prettierignore ├── .prettierrc.yml ├── .travis.yml ├── LICENSE ├── README.md ├── TODO.md ├── gulpfile.js ├── index.js ├── lib └── reporter.js ├── package.json └── tests ├── expected └── empty.md ├── fixtures ├── block.sass ├── block.scss ├── block.styl ├── coffee.coffee ├── comments.jade ├── handlebars.hbs ├── jsdoc.js ├── line.styl └── typescript.ts └── stream-spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .idea/ 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/TODO.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/index.js -------------------------------------------------------------------------------- /lib/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/lib/reporter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/package.json -------------------------------------------------------------------------------- /tests/expected/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/expected/empty.md -------------------------------------------------------------------------------- /tests/fixtures/block.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/block.sass -------------------------------------------------------------------------------- /tests/fixtures/block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/block.scss -------------------------------------------------------------------------------- /tests/fixtures/block.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/block.styl -------------------------------------------------------------------------------- /tests/fixtures/coffee.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/coffee.coffee -------------------------------------------------------------------------------- /tests/fixtures/comments.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/comments.jade -------------------------------------------------------------------------------- /tests/fixtures/handlebars.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/handlebars.hbs -------------------------------------------------------------------------------- /tests/fixtures/jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/jsdoc.js -------------------------------------------------------------------------------- /tests/fixtures/line.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/line.styl -------------------------------------------------------------------------------- /tests/fixtures/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/fixtures/typescript.ts -------------------------------------------------------------------------------- /tests/stream-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgilad/gulp-todo/HEAD/tests/stream-spec.js --------------------------------------------------------------------------------