├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── init.coffee ├── linter-rust.coffee └── mode.coffee ├── package.json └── spec └── parse-spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/README.md -------------------------------------------------------------------------------- /lib/init.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/lib/init.coffee -------------------------------------------------------------------------------- /lib/linter-rust.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/lib/linter-rust.coffee -------------------------------------------------------------------------------- /lib/mode.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/lib/mode.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/package.json -------------------------------------------------------------------------------- /spec/parse-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-rust/HEAD/spec/parse-spec.coffee --------------------------------------------------------------------------------