* Update erb_lint to track newer Rubocop versions * Update rubocop-rspec to 2.1 * Fix Rails/WhereEquals and Style/RedundantParentheses * Upgrade rubocop to 1.1.0 * Enable Rubocop 1.1 cops * Upgrade rubocop to 1.2.0 * Enable Rubocop 1.2 cops * Upgrade rubocop to 1.3.0 * Enable Rubocop 1.3 cops * Enable Rubocop 1.4 cops * Enable Rubocop 1.5 cops * Upgrade rubocop to 1.6.x * Restore previous .reject * Fork the PR to make sure we don't inject unwanted code accidentally
9 lines
153 B
Ruby
Executable file
9 lines
153 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
$LOAD_PATH.unshift("#{__dir__}/../lib")
|
|
|
|
require 'erb_lint/cli'
|
|
|
|
cli = ERBLint::CLI.new
|
|
exit(cli.run)
|