rubocop_rspec: disable RSpec/FilePath.

We keep adding to the list of exceptions and this fails if it isn't run
in the right directory.
This commit is contained in:
Mike McQuaid 2020-05-05 15:50:10 +01:00
parent 316da98140
commit 60c9472b14
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
2 changed files with 4 additions and 50 deletions

View File

@ -15,12 +15,14 @@ Style/DisableCopsWithinSourceCodeDirective:
# Intentionally disabled as it doesn't fit with our code style. # Intentionally disabled as it doesn't fit with our code style.
RSpec/AnyInstance: RSpec/AnyInstance:
Enabled: false Enabled: false
RSpec/FilePath:
Enabled: false
RSpec/ImplicitBlockExpectation: RSpec/ImplicitBlockExpectation:
Enabled: false Enabled: false
RSpec/SubjectStub: RSpec/SubjectStub:
Enabled: false Enabled: false
# TODO: try to enable these (also requires fixing Homebrew/bundle) # TODO: try to enable these
RSpec/ContextWording: RSpec/ContextWording:
Enabled: false Enabled: false
RSpec/DescribeClass: RSpec/DescribeClass:
@ -34,7 +36,7 @@ RSpec/RepeatedDescription:
RSpec/RepeatedExampleGroupDescription: RSpec/RepeatedExampleGroupDescription:
Enabled: false Enabled: false
# TODO: try to reduce these (also requires fixing Homebrew/bundle) # TODO: try to reduce these
RSpec/ExampleLength: RSpec/ExampleLength:
Max: 75 Max: 75
RSpec/MultipleExpectations: RSpec/MultipleExpectations:

View File

@ -12,54 +12,6 @@ RSpec/ExampleLength:
Exclude: Exclude:
- 'rubocops/patches_spec.rb' - 'rubocops/patches_spec.rb'
# Offense count: 41
# Configuration parameters: CustomTransform, IgnoreMethods.
RSpec/FilePath:
Exclude:
- 'ARGV_spec.rb'
- 'PATH_spec.rb'
- 'bottle_filename_spec.rb'
- 'cache_store_spec.rb'
- 'cask/artifact/alt_target_spec.rb'
- 'cask/artifact/generic_artifact_spec.rb'
- 'cask/artifact/two_apps_correct_spec.rb'
- 'cask/artifact/uninstall_no_zap_spec.rb'
- 'cask/cask_loader/from__path_loader_spec.rb'
- 'cask/macos_spec.rb'
- 'cli/parser_spec.rb'
- 'checksum_verification_spec.rb'
- 'cxxstdlib_spec.rb'
- 'diagnostic_checks_spec.rb'
- 'env_config_spec.rb'
- 'missing_formula_spec.rb'
- 'os/linux/diagnostic_spec.rb'
- 'os/mac/diagnostic_spec.rb'
- 'requirements/macos_requirement_spec.rb'
- 'rubocops/cask/homepage_matches_url_spec.rb'
- 'rubocops/cask/homepage_url_trailing_slash_spec.rb'
- 'rubocops/cask/no_dsl_version_spec.rb'
- 'rubocops/cask/stanza_grouping_spec.rb'
- 'rubocops/cask/stanza_order_spec.rb'
- 'rubocops/caveats_spec.rb'
- 'rubocops/components_order_spec.rb'
- 'rubocops/components_redundancy_spec.rb'
- 'rubocops/conflicts_spec.rb'
- 'rubocops/dependency_order_spec.rb'
- 'rubocops/files_spec.rb'
- 'rubocops/keg_only_spec.rb'
- 'rubocops/homepage_spec.rb'
- 'rubocops/options_spec.rb'
- 'rubocops/patches_spec.rb'
- 'rubocops/text_spec.rb'
- 'rubocops/uses_from_macos_spec.rb'
- 'rubocops/formula_desc_spec.rb'
- 'search_spec.rb'
- 'string_spec.rb'
- 'style_spec.rb'
- 'system_command_result_spec.rb'
- 'unpack_strategy/p7zip_spec.rb'
- 'utils/github_spec.rb'
# Offense count: 6 # Offense count: 6
# Configuration parameters: AssignmentOnly. # Configuration parameters: AssignmentOnly.
RSpec/InstanceVariable: RSpec/InstanceVariable: