├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── groundskeeper ├── index.js ├── lib └── groundskeeper.js ├── package.json └── test ├── console.test.js ├── debugger.test.js ├── fixtures ├── console │ ├── console.clean.js │ ├── console.js │ ├── console.min.clean.js │ └── console.min.js ├── debugger │ ├── debugger.clean.js │ ├── debugger.js │ ├── debugger.min.clean.js │ └── debugger.min.js ├── namespaced │ ├── App.logger.clean.js │ ├── App.logger.js │ ├── App.logger.log.clean.js │ ├── App.logger.log.js │ ├── App.logger.log.min.clean.js │ ├── App.logger.log.min.js │ ├── App.logger.min.clean.js │ ├── App.logger.min.js │ ├── Sushi.clean.js │ ├── Sushi.js │ ├── Sushi.min.clean.js │ ├── Sushi.min.js │ ├── assignment.clean.js │ ├── assignment.js │ ├── definition.clean.js │ ├── definition.js │ ├── group.clean.js │ └── group.js └── pragmas │ ├── block-comment.clean.js │ ├── block-comment.js │ ├── development.clean.js │ ├── development.js │ ├── non-alphanumeric.clean.js │ ├── non-alphanumeric.js │ ├── pragmas.clean.js │ ├── pragmas.js │ ├── validation.clean.js │ └── validation.js ├── namespaced.test.js └── pragma.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | docs 3 | support 4 | test 5 | coverage 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/README.md -------------------------------------------------------------------------------- /bin/groundskeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/bin/groundskeeper -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/index.js -------------------------------------------------------------------------------- /lib/groundskeeper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/lib/groundskeeper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/package.json -------------------------------------------------------------------------------- /test/console.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/console.test.js -------------------------------------------------------------------------------- /test/debugger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/debugger.test.js -------------------------------------------------------------------------------- /test/fixtures/console/console.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/console/console.clean.js -------------------------------------------------------------------------------- /test/fixtures/console/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/console/console.js -------------------------------------------------------------------------------- /test/fixtures/console/console.min.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/console/console.min.clean.js -------------------------------------------------------------------------------- /test/fixtures/console/console.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/console/console.min.js -------------------------------------------------------------------------------- /test/fixtures/debugger/debugger.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/debugger/debugger.clean.js -------------------------------------------------------------------------------- /test/fixtures/debugger/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/debugger/debugger.js -------------------------------------------------------------------------------- /test/fixtures/debugger/debugger.min.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/debugger/debugger.min.clean.js -------------------------------------------------------------------------------- /test/fixtures/debugger/debugger.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/debugger/debugger.min.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.log.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.log.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.log.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.log.min.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.log.min.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.log.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.log.min.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.min.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.min.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/App.logger.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/App.logger.min.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/Sushi.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/Sushi.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/Sushi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/Sushi.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/Sushi.min.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/Sushi.min.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/Sushi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/Sushi.min.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/assignment.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/assignment.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/assignment.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/definition.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/definition.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/definition.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/group.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/group.clean.js -------------------------------------------------------------------------------- /test/fixtures/namespaced/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/namespaced/group.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/block-comment.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/block-comment.clean.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/block-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/block-comment.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/development.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/development.clean.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/development.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/non-alphanumeric.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/non-alphanumeric.clean.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/non-alphanumeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/non-alphanumeric.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/pragmas.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/pragmas.clean.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/pragmas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/pragmas.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/validation.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/validation.clean.js -------------------------------------------------------------------------------- /test/fixtures/pragmas/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/fixtures/pragmas/validation.js -------------------------------------------------------------------------------- /test/namespaced.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/namespaced.test.js -------------------------------------------------------------------------------- /test/pragma.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couto/groundskeeper/HEAD/test/pragma.test.js --------------------------------------------------------------------------------