├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── rules └── gandalf.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/package.json -------------------------------------------------------------------------------- /rules/gandalf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizalabs/gandalf-lint/HEAD/rules/gandalf.js --------------------------------------------------------------------------------