We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a06c4a + 379680b commit 621d9faCopy full SHA for 621d9fa
linter.py
@@ -1,8 +1,8 @@
1
import os
2
-from SublimeLinter.lint import RubyLinter
+from SublimeLinter.lint import Linter
3
4
5
-class Rubocop(RubyLinter):
+class Rubocop(Linter):
6
defaults = {
7
'selector': 'source.ruby - text.html - text.haml'
8
}
@@ -17,7 +17,7 @@ def cmd(self):
17
18
settings = self.get_view_settings()
19
20
- command = ['ruby', '-S']
+ command = []
21
22
if settings.get('use_bundle_exec', False):
23
command.extend(['bundle', 'exec'])
0 commit comments