Created
October 5, 2021 13:09
-
-
Save gnomex/e34bf614ff62de6279053f43c32b5a3b to your computer and use it in GitHub Desktop.
Fix ruby-rubocop vscode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# FROM https://github.com/misogi/vscode-ruby-rubocop/issues/23 | |
mkdir -p ~/.vscode/bin | |
cat <<'EOT' > ~/.vscode/bin/rubocop | |
#!/bin/bash | |
export PATH="$PATH:~/.rvm/bin" | |
source ~/.rvm/scripts/rvm | |
rvm use @default >/dev/null 2>&1 | |
exec bundle exec rubocop $@ | |
EOT | |
chmod +x ~/.vscode/bin/rubocop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment