├── .gitignore ├── .rvmrc ├── Commands ├── About JSLintMate.tmCommand ├── Help.tmCommand ├── Report a Bug….tmCommand ├── Run JSLintMate and Save.tmCommand ├── Run JSLintMate with JSHint.tmCommand └── Run JSLintMate.tmCommand ├── Gemfile ├── Gemfile.lock ├── HISTORY ├── LICENSE ├── Preferences ├── Linters.tmPreferences ├── Options File.tmPreferences └── Unused Variables.tmPreferences ├── README.markdown ├── Rakefile ├── Support ├── config │ ├── jshint.json │ ├── jshint.yml │ ├── jslint.json │ └── jslint.yml └── lib │ ├── jshint.js │ ├── jslint.js │ ├── jslintmate.rb │ ├── jslintmate │ ├── lint_error.rb │ ├── linter.rb │ ├── linter │ │ └── options_files.rb │ ├── notice.rb │ ├── version.rb │ └── views │ │ ├── main.css │ │ ├── main.html.erb │ │ ├── main.js │ │ ├── results.html.erb │ │ └── version.js │ └── runner.js ├── Tests ├── fixtures │ └── test.js ├── notice_spec.rb ├── spec_helper.rb └── version_spec.rb ├── VERSION └── info.plist /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | tmp/ 3 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use ruby-1.8.7-p330@jslintmate --create 2 | -------------------------------------------------------------------------------- /Commands/About JSLintMate.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Commands/About JSLintMate.tmCommand -------------------------------------------------------------------------------- /Commands/Help.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Commands/Help.tmCommand -------------------------------------------------------------------------------- /Commands/Report a Bug….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Commands/Report a Bug….tmCommand -------------------------------------------------------------------------------- /Commands/Run JSLintMate and Save.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Commands/Run JSLintMate and Save.tmCommand -------------------------------------------------------------------------------- /Commands/Run JSLintMate with JSHint.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Commands/Run JSLintMate with JSHint.tmCommand -------------------------------------------------------------------------------- /Commands/Run JSLintMate.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Commands/Run JSLintMate.tmCommand -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/HISTORY -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/LICENSE -------------------------------------------------------------------------------- /Preferences/Linters.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Preferences/Linters.tmPreferences -------------------------------------------------------------------------------- /Preferences/Options File.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Preferences/Options File.tmPreferences -------------------------------------------------------------------------------- /Preferences/Unused Variables.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Preferences/Unused Variables.tmPreferences -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Rakefile -------------------------------------------------------------------------------- /Support/config/jshint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/config/jshint.json -------------------------------------------------------------------------------- /Support/config/jshint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/config/jshint.yml -------------------------------------------------------------------------------- /Support/config/jslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/config/jslint.json -------------------------------------------------------------------------------- /Support/config/jslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/config/jslint.yml -------------------------------------------------------------------------------- /Support/lib/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jshint.js -------------------------------------------------------------------------------- /Support/lib/jslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslint.js -------------------------------------------------------------------------------- /Support/lib/jslintmate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate.rb -------------------------------------------------------------------------------- /Support/lib/jslintmate/lint_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/lint_error.rb -------------------------------------------------------------------------------- /Support/lib/jslintmate/linter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/linter.rb -------------------------------------------------------------------------------- /Support/lib/jslintmate/linter/options_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/linter/options_files.rb -------------------------------------------------------------------------------- /Support/lib/jslintmate/notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/notice.rb -------------------------------------------------------------------------------- /Support/lib/jslintmate/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/version.rb -------------------------------------------------------------------------------- /Support/lib/jslintmate/views/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/views/main.css -------------------------------------------------------------------------------- /Support/lib/jslintmate/views/main.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/views/main.html.erb -------------------------------------------------------------------------------- /Support/lib/jslintmate/views/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/views/main.js -------------------------------------------------------------------------------- /Support/lib/jslintmate/views/results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/views/results.html.erb -------------------------------------------------------------------------------- /Support/lib/jslintmate/views/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/jslintmate/views/version.js -------------------------------------------------------------------------------- /Support/lib/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Support/lib/runner.js -------------------------------------------------------------------------------- /Tests/fixtures/test.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var x; 3 | x = 1; 4 | }()); 5 | -------------------------------------------------------------------------------- /Tests/notice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Tests/notice_spec.rb -------------------------------------------------------------------------------- /Tests/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Tests/spec_helper.rb -------------------------------------------------------------------------------- /Tests/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/Tests/version_spec.rb -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4 2 | -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rondevera/jslintmate/HEAD/info.plist --------------------------------------------------------------------------------