Sha256: 3a1e179cfafcddb56e03f37072a41bb9b38b004e54b5401ec0d6ccb2e2c80410
Contents?: true
Size: 346 Bytes
Versions: 63
Compression:
Stored size: 346 Bytes
Contents
# typed: false # frozen_string_literal: true require_relative "base" module Hephaestus class RubocopGenerator < Generators::Base def rubocop copy_file(".rubocop.yml", ".rubocop.yml") end def lint Bundler.with_unbundled_env do run("bundle exec rubocop -A", abort_on_failure: false) end end end end
Version data entries
63 entries across 63 versions & 1 rubygems