This linter plugin for Linter provides an interface to rubocop. It will be used with files that have the “Ruby” syntax.
Linter package must be installed in order to use this plugin. If Linter is not installed, please follow the instructions here.
Before using this plugin, you must ensure that rubocop, version 0.37 or
greater, is installed on your system. To install rubocop, do the following:
Now you can proceed to install the linter-rubocop plugin.
apm install linter-rubocopYou can configure linter-rubocop by editing ~/.atom/config.cson
(choose Open Your Config in Atom menu):
If you're using RVM and receiving errors in Atom that indicate Rubocop can't be
found, you may need to change /bin to /wrappers in the path that gets
returned from which rubocop before using it as your command setting.
For example, change:
"linter-rubocop":
command: "/Users/JohnDoe/.rvm/gems/ruby-2.2.4@global/bin/rubocop"To:
"linter-rubocop":
command: "/Users/JohnDoe/.rvm/gems/ruby-2.2.4@global/wrappers/rubocop"If you're using rbenv, it's recommended that you set your command to point to the Rubocop shim. This way, when you upgrade Ruby, the command will be a pointer to a Rubocop executable, regardless of your current Ruby version.
"linter-rubocop":
command: "/Users/JohnDoe/.rbenv/shims/rubocop"If you're using chruby , it's recommended that you set your command to execute chruby-exec to set version and run rubocop. Alternatively, you can reference the full intended path.
"linter-rubocop":
command: "/usr/local/bin/chruby-exec 2.5.0 -- rubocop"or
"linter-rubocop":
command: "/Users/JohnDoe/.gem/ruby/2.5.1/bin/rubocop"