├── .coffeelint ├── .editorconfig ├── .gitignore ├── .npmignore ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── bin └── fs-lint ├── package.json ├── source ├── cli.coffee └── fs-lint.coffee └── test ├── fs-lint-sample.json ├── test.coffee └── test.js /.coffeelint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/.coffeelint -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/README.md -------------------------------------------------------------------------------- /bin/fs-lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/cli'); 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/package.json -------------------------------------------------------------------------------- /source/cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/source/cli.coffee -------------------------------------------------------------------------------- /source/fs-lint.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/source/fs-lint.coffee -------------------------------------------------------------------------------- /test/fs-lint-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/test/fs-lint-sample.json -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/test/test.coffee -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanlauliac/fs-lint/HEAD/test/test.js --------------------------------------------------------------------------------