Sha256: 8aa00eb83a687736b75191336dbc6c0c15a50658bcc21d8561c8b44a36cec996
Contents?: true
Size: 593 Bytes
Versions: 1
Compression:
Stored size: 593 Bytes
Contents
#!/bin/bash # Run Rubocop with sane defaults # - only recognized file types: allows you to pipe in anything and have Ruboop only check files it thinks it can handle # - force exclusion: even when piping in files, it still ignores what I should not touch # - display style guide: help figure out what a rule is supposed to do # - safe: don't run experimental cops # - display only fail level offenses: hides INFO severity failing cops bundle exec rubocop \ --only-recognized-file-types \ --force-exclusion \ --display-style-guide \ --safe \ --display-only-fail-level-offenses \ $*
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
groupie-0.6.0 | bin/rubocop |