From b0e68ba2e8d98787a2b4d60e5f5dc65385d87f9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 11 Aug 2023 21:35:35 +0200 Subject: [PATCH] Restore a more standard RuboCop configuration setup We used the previous setup to workaround an issue, but I'm pretty sure we're good now. --- .rubocop.yml | 336 ++++++++++++++++++++++++++++++++++- bundler/.rubocop.yml | 2 +- cargo/.rubocop.yml | 2 +- common/.rubocop.yml | 2 +- composer/.rubocop.yml | 2 +- docker/.rubocop.yml | 2 +- elm/.rubocop.yml | 2 +- git_submodules/.rubocop.yml | 2 +- github_actions/.rubocop.yml | 2 +- go_modules/.rubocop.yml | 2 +- gradle/.rubocop.yml | 2 +- hex/.rubocop.yml | 2 +- maven/.rubocop.yml | 2 +- npm_and_yarn/.rubocop.yml | 2 +- nuget/.rubocop.yml | 2 +- omnibus/.rubocop.yml | 337 +----------------------------------- pub/.rubocop.yml | 2 +- python/.rubocop.yml | 2 +- swift/.rubocop.yml | 2 +- terraform/.rubocop.yml | 2 +- updater/.rubocop.yml | 2 +- 21 files changed, 355 insertions(+), 356 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index dbabbf47bb9..e0845f3e7c6 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,2 +1,336 @@ --- -inherit_from: omnibus/.rubocop.yml +require: rubocop-performance + +AllCops: + DisplayCopNames: true + Exclude: + - "*/vendor/**/*" + - "**/tmp/**/*" + - "*/spec/fixtures/**/*" + - "vendor/**/*" + - "dry-run/**/*" + NewCops: enable + SuggestExtensions: false +Gemspec/DeprecatedAttributeAssignment: + Enabled: true +Gemspec/RequireMFA: + Enabled: false +Layout/DotPosition: + EnforcedStyle: trailing +Layout/EmptyLinesAroundAttributeAccessor: + Enabled: false +Layout/FirstArrayElementIndentation: + EnforcedStyle: consistent +Layout/FirstHashElementIndentation: + EnforcedStyle: consistent +Layout/LineLength: + Max: 120 +Layout/RescueEnsureAlignment: + Enabled: false +Layout/SpaceAroundMethodCallOperator: + Enabled: false +Layout/SpaceBeforeBrackets: + Enabled: true +Layout/LineContinuationLeadingSpace: + Enabled: false +Lint/AmbiguousAssignment: + Enabled: true +Lint/BinaryOperatorWithIdenticalOperands: + Enabled: true +Lint/DeprecatedConstants: + Enabled: true +Lint/DeprecatedOpenSSLConstant: + Enabled: false +Lint/DuplicateBranch: + Enabled: false +Lint/DuplicateElsifCondition: + Enabled: false +Lint/DuplicateRegexpCharacterClassElement: + Enabled: true +Lint/DuplicateRequire: + Enabled: true +Lint/DuplicateRescueException: + Enabled: true +Lint/EmptyBlock: + Enabled: true +Lint/EmptyClass: + Enabled: true +Lint/EmptyConditionalBody: + Enabled: true +Lint/EmptyFile: + Enabled: true +Lint/EmptyInPattern: + Enabled: true +Lint/FloatComparison: + Enabled: true +Lint/LambdaWithoutLiteralBlock: + Enabled: true +Lint/MissingSuper: + Enabled: false +Lint/MixedRegexpCaptureTypes: + Enabled: false +Lint/NoReturnInBeginEndBlocks: + Enabled: false +Lint/NumberedParameterAssignment: + Enabled: true +Lint/OrAssignmentToConstant: + Enabled: true +Lint/OutOfRangeRegexpRef: + Enabled: true +Lint/RaiseException: + Enabled: false +Lint/RedundantDirGlobSort: + Enabled: true +Lint/SelfAssignment: + Enabled: true +Lint/StructNewOverride: + Enabled: false +Lint/SymbolConversion: + Enabled: true +Lint/ToEnumArguments: + Enabled: true +Lint/TopLevelReturnWithArgument: + Enabled: true +Lint/TrailingCommaInAttributeDeclaration: + Enabled: true +Lint/TripleQuotes: + Enabled: true +Lint/UnexpectedBlockArity: + Enabled: true +Lint/UnmodifiedReduceAccumulator: + Enabled: true +Lint/UnreachableLoop: + Enabled: true +Lint/UselessMethodDefinition: + Enabled: true +Metrics/AbcSize: + Max: 35 +Metrics/BlockLength: + Exclude: + - "*/Rakefile" + - "**/spec/**/*" + - "*/dependabot-*.gemspec" + Max: 35 +Metrics/ClassLength: + Max: 350 +Metrics/CyclomaticComplexity: + Max: 15 +Metrics/MethodLength: + Max: 35 +Metrics/ModuleLength: + Max: 350 +Metrics/ParameterLists: + CountKeywordArgs: false +Metrics/PerceivedComplexity: + Max: 10 +Naming/FileName: + Enabled: false +Performance/AncestorsInclude: + Enabled: true +Performance/BigDecimalWithNumericArgument: + Enabled: true +Performance/BindCall: + Enabled: true +Performance/BlockGivenWithExplicitBlock: + Enabled: true +Performance/Caller: + Enabled: true +Performance/CaseWhenSplat: + Enabled: true +Performance/Casecmp: + Enabled: true +Performance/ChainArrayAllocation: + Enabled: false +Performance/CollectionLiteralInLoop: + Enabled: true +Performance/CompareWithBlock: + Enabled: true +Performance/ConcurrentMonotonicTime: + Enabled: true +Performance/ConstantRegexp: + Enabled: true +Performance/Count: + Enabled: true +Performance/DeletePrefix: + Enabled: true +Performance/DeleteSuffix: + Enabled: true +Performance/Detect: + Enabled: true +Performance/DoubleStartEndWith: + Enabled: true +Performance/EndWith: + Enabled: true +Performance/FixedSize: + Enabled: true +Performance/FlatMap: + Enabled: true +Performance/InefficientHashSearch: + Enabled: true +Performance/IoReadlines: + Enabled: true +Performance/MapCompact: + Enabled: true +Performance/MethodObjectAsBlock: + Enabled: true +Performance/OpenStruct: + Enabled: false +Performance/RangeInclude: + Enabled: true +Performance/RedundantBlockCall: + Enabled: true +Performance/RedundantEqualityComparisonBlock: + Enabled: true +Performance/RedundantMatch: + Enabled: true +Performance/RedundantMerge: + Enabled: true +Performance/RedundantSortBlock: + Enabled: true +Performance/RedundantSplitRegexpArgument: + Enabled: true +Performance/RedundantStringChars: + Enabled: true +Performance/RegexpMatch: + Enabled: true +Performance/ReverseEach: + Enabled: true +Performance/ReverseFirst: + Enabled: true +Performance/SelectMap: + Enabled: false +Performance/Size: + Enabled: true +Performance/SortReverse: + Enabled: true +Performance/Squeeze: + Enabled: true +Performance/StartWith: + Enabled: true +Performance/StringIdentifierArgument: + Enabled: true +Performance/StringInclude: + Enabled: true +Performance/StringReplacement: + Enabled: true +Performance/Sum: + Enabled: true +Performance/TimesMap: + Enabled: true +Performance/UnfreezeString: + Enabled: true +Performance/UriDefaultParser: + Enabled: true +Style/AccessorGrouping: + Enabled: false +Style/ArgumentsForwarding: + Enabled: true +Style/ArrayCoercion: + Enabled: false +Style/BisectedAttrAccessor: + Enabled: false +Style/CaseLikeIf: + Enabled: false +Style/CollectionCompact: + Enabled: true +Style/CombinableLoops: + Enabled: true +Style/DocumentDynamicEvalDefinition: + Enabled: true +Style/Documentation: + Enabled: false +Style/EndlessMethod: + Enabled: true +Style/ExplicitBlockArgument: + Enabled: true +Style/ExponentialNotation: + Enabled: false +Style/GlobalStdStream: + Enabled: true +Style/HashAsLastArrayItem: + Enabled: false +Style/HashConversion: + Enabled: true +Style/HashEachMethods: + Enabled: false +Style/HashExcept: + Enabled: true +Style/HashLikeCase: + Enabled: false +Style/HashSyntax: + EnforcedShorthandSyntax: either +Style/HashTransformKeys: + Enabled: false +Style/HashTransformValues: + Enabled: false +Style/IfWithBooleanLiteralBranches: + Enabled: true +Style/InPatternThen: + Enabled: true +Style/KeywordParametersOrder: + Enabled: false +Style/MultilineInPatternThen: + Enabled: true +Style/MultipleComparison: + Enabled: false +Style/NegatedIfElseCondition: + Enabled: true +Style/NilLambda: + Enabled: true +Style/NumericPredicate: + Exclude: + - "*/spec/**/*" +Style/OptionalBooleanParameter: + Enabled: false +Style/PercentLiteralDelimiters: + PreferredDelimiters: + "%I": "()" + "%W": "()" + "%i": "()" + "%w": "()" +Style/QuotedSymbols: + Enabled: true +Style/RedundantArgument: + Enabled: true +Style/RedundantAssignment: + Enabled: false +Style/RedundantConstantBase: + Enabled: false +Style/RedundantFetchBlock: + Enabled: false +Style/RedundantFileExtensionInRequire: + Enabled: false +Style/RedundantRegexpCharacterClass: + Enabled: false +Style/RedundantRegexpEscape: + Enabled: false +Style/RedundantSelfAssignment: + Enabled: true +Style/SignalException: + EnforcedStyle: only_raise +Style/SingleArgumentDig: + Enabled: true +Style/SlicingWithRange: + Enabled: false +Style/SoleNestedConditional: + Enabled: true +Style/StringChars: + Enabled: true +Style/StringConcatenation: + Enabled: false +Style/StringLiterals: + EnforcedStyle: double_quotes +Style/SwapValues: + Enabled: true +Style/OpenStructUse: + Enabled: false +Style/SpecialGlobalVars: + Enabled: false +Style/SelectByRegexp: + Enabled: false + +# TODO these were temporarily disabled during the Ruby 2.7 -> 3.1 upgrade +# in order to keep the upgrade diff small, they will be enabled/fixed in +# a follow-on PR. +Naming/BlockForwarding: + Enabled: false diff --git a/bundler/.rubocop.yml b/bundler/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/bundler/.rubocop.yml +++ b/bundler/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/cargo/.rubocop.yml b/cargo/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/cargo/.rubocop.yml +++ b/cargo/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/common/.rubocop.yml b/common/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/common/.rubocop.yml +++ b/common/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/composer/.rubocop.yml b/composer/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/composer/.rubocop.yml +++ b/composer/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/docker/.rubocop.yml b/docker/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/docker/.rubocop.yml +++ b/docker/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/elm/.rubocop.yml b/elm/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/elm/.rubocop.yml +++ b/elm/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/git_submodules/.rubocop.yml b/git_submodules/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/git_submodules/.rubocop.yml +++ b/git_submodules/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/github_actions/.rubocop.yml b/github_actions/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/github_actions/.rubocop.yml +++ b/github_actions/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/go_modules/.rubocop.yml b/go_modules/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/go_modules/.rubocop.yml +++ b/go_modules/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/gradle/.rubocop.yml b/gradle/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/gradle/.rubocop.yml +++ b/gradle/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/hex/.rubocop.yml b/hex/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/hex/.rubocop.yml +++ b/hex/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/maven/.rubocop.yml b/maven/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/maven/.rubocop.yml +++ b/maven/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/npm_and_yarn/.rubocop.yml b/npm_and_yarn/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/npm_and_yarn/.rubocop.yml +++ b/npm_and_yarn/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/nuget/.rubocop.yml b/nuget/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/nuget/.rubocop.yml +++ b/nuget/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/omnibus/.rubocop.yml b/omnibus/.rubocop.yml index 8527735a723..fc2019d46a3 100644 --- a/omnibus/.rubocop.yml +++ b/omnibus/.rubocop.yml @@ -1,336 +1 @@ ---- -require: rubocop-performance - -AllCops: - DisplayCopNames: true - Exclude: - - "../*/vendor/**/*" - - "../**/tmp/**/*" - - "../*/spec/fixtures/**/*" - - "../vendor/**/*" - - "../dry-run/**/*" - NewCops: enable - SuggestExtensions: false -Gemspec/DeprecatedAttributeAssignment: - Enabled: true -Gemspec/RequireMFA: - Enabled: false -Layout/DotPosition: - EnforcedStyle: trailing -Layout/EmptyLinesAroundAttributeAccessor: - Enabled: false -Layout/FirstArrayElementIndentation: - EnforcedStyle: consistent -Layout/FirstHashElementIndentation: - EnforcedStyle: consistent -Layout/LineLength: - Max: 120 -Layout/RescueEnsureAlignment: - Enabled: false -Layout/SpaceAroundMethodCallOperator: - Enabled: false -Layout/SpaceBeforeBrackets: - Enabled: true -Layout/LineContinuationLeadingSpace: - Enabled: false -Lint/AmbiguousAssignment: - Enabled: true -Lint/BinaryOperatorWithIdenticalOperands: - Enabled: true -Lint/DeprecatedConstants: - Enabled: true -Lint/DeprecatedOpenSSLConstant: - Enabled: false -Lint/DuplicateBranch: - Enabled: false -Lint/DuplicateElsifCondition: - Enabled: false -Lint/DuplicateRegexpCharacterClassElement: - Enabled: true -Lint/DuplicateRequire: - Enabled: true -Lint/DuplicateRescueException: - Enabled: true -Lint/EmptyBlock: - Enabled: true -Lint/EmptyClass: - Enabled: true -Lint/EmptyConditionalBody: - Enabled: true -Lint/EmptyFile: - Enabled: true -Lint/EmptyInPattern: - Enabled: true -Lint/FloatComparison: - Enabled: true -Lint/LambdaWithoutLiteralBlock: - Enabled: true -Lint/MissingSuper: - Enabled: false -Lint/MixedRegexpCaptureTypes: - Enabled: false -Lint/NoReturnInBeginEndBlocks: - Enabled: false -Lint/NumberedParameterAssignment: - Enabled: true -Lint/OrAssignmentToConstant: - Enabled: true -Lint/OutOfRangeRegexpRef: - Enabled: true -Lint/RaiseException: - Enabled: false -Lint/RedundantDirGlobSort: - Enabled: true -Lint/SelfAssignment: - Enabled: true -Lint/StructNewOverride: - Enabled: false -Lint/SymbolConversion: - Enabled: true -Lint/ToEnumArguments: - Enabled: true -Lint/TopLevelReturnWithArgument: - Enabled: true -Lint/TrailingCommaInAttributeDeclaration: - Enabled: true -Lint/TripleQuotes: - Enabled: true -Lint/UnexpectedBlockArity: - Enabled: true -Lint/UnmodifiedReduceAccumulator: - Enabled: true -Lint/UnreachableLoop: - Enabled: true -Lint/UselessMethodDefinition: - Enabled: true -Metrics/AbcSize: - Max: 35 -Metrics/BlockLength: - Exclude: - - "../*/Rakefile" - - "../**/spec/**/*" - - "../*/dependabot-*.gemspec" - Max: 35 -Metrics/ClassLength: - Max: 350 -Metrics/CyclomaticComplexity: - Max: 15 -Metrics/MethodLength: - Max: 35 -Metrics/ModuleLength: - Max: 350 -Metrics/ParameterLists: - CountKeywordArgs: false -Metrics/PerceivedComplexity: - Max: 10 -Naming/FileName: - Enabled: false -Performance/AncestorsInclude: - Enabled: true -Performance/BigDecimalWithNumericArgument: - Enabled: true -Performance/BindCall: - Enabled: true -Performance/BlockGivenWithExplicitBlock: - Enabled: true -Performance/Caller: - Enabled: true -Performance/CaseWhenSplat: - Enabled: true -Performance/Casecmp: - Enabled: true -Performance/ChainArrayAllocation: - Enabled: false -Performance/CollectionLiteralInLoop: - Enabled: true -Performance/CompareWithBlock: - Enabled: true -Performance/ConcurrentMonotonicTime: - Enabled: true -Performance/ConstantRegexp: - Enabled: true -Performance/Count: - Enabled: true -Performance/DeletePrefix: - Enabled: true -Performance/DeleteSuffix: - Enabled: true -Performance/Detect: - Enabled: true -Performance/DoubleStartEndWith: - Enabled: true -Performance/EndWith: - Enabled: true -Performance/FixedSize: - Enabled: true -Performance/FlatMap: - Enabled: true -Performance/InefficientHashSearch: - Enabled: true -Performance/IoReadlines: - Enabled: true -Performance/MapCompact: - Enabled: true -Performance/MethodObjectAsBlock: - Enabled: true -Performance/OpenStruct: - Enabled: false -Performance/RangeInclude: - Enabled: true -Performance/RedundantBlockCall: - Enabled: true -Performance/RedundantEqualityComparisonBlock: - Enabled: true -Performance/RedundantMatch: - Enabled: true -Performance/RedundantMerge: - Enabled: true -Performance/RedundantSortBlock: - Enabled: true -Performance/RedundantSplitRegexpArgument: - Enabled: true -Performance/RedundantStringChars: - Enabled: true -Performance/RegexpMatch: - Enabled: true -Performance/ReverseEach: - Enabled: true -Performance/ReverseFirst: - Enabled: true -Performance/SelectMap: - Enabled: false -Performance/Size: - Enabled: true -Performance/SortReverse: - Enabled: true -Performance/Squeeze: - Enabled: true -Performance/StartWith: - Enabled: true -Performance/StringIdentifierArgument: - Enabled: true -Performance/StringInclude: - Enabled: true -Performance/StringReplacement: - Enabled: true -Performance/Sum: - Enabled: true -Performance/TimesMap: - Enabled: true -Performance/UnfreezeString: - Enabled: true -Performance/UriDefaultParser: - Enabled: true -Style/AccessorGrouping: - Enabled: false -Style/ArgumentsForwarding: - Enabled: true -Style/ArrayCoercion: - Enabled: false -Style/BisectedAttrAccessor: - Enabled: false -Style/CaseLikeIf: - Enabled: false -Style/CollectionCompact: - Enabled: true -Style/CombinableLoops: - Enabled: true -Style/DocumentDynamicEvalDefinition: - Enabled: true -Style/Documentation: - Enabled: false -Style/EndlessMethod: - Enabled: true -Style/ExplicitBlockArgument: - Enabled: true -Style/ExponentialNotation: - Enabled: false -Style/GlobalStdStream: - Enabled: true -Style/HashAsLastArrayItem: - Enabled: false -Style/HashConversion: - Enabled: true -Style/HashEachMethods: - Enabled: false -Style/HashExcept: - Enabled: true -Style/HashLikeCase: - Enabled: false -Style/HashSyntax: - EnforcedShorthandSyntax: either -Style/HashTransformKeys: - Enabled: false -Style/HashTransformValues: - Enabled: false -Style/IfWithBooleanLiteralBranches: - Enabled: true -Style/InPatternThen: - Enabled: true -Style/KeywordParametersOrder: - Enabled: false -Style/MultilineInPatternThen: - Enabled: true -Style/MultipleComparison: - Enabled: false -Style/NegatedIfElseCondition: - Enabled: true -Style/NilLambda: - Enabled: true -Style/NumericPredicate: - Exclude: - - "../*/spec/**/*" -Style/OptionalBooleanParameter: - Enabled: false -Style/PercentLiteralDelimiters: - PreferredDelimiters: - "%I": "()" - "%W": "()" - "%i": "()" - "%w": "()" -Style/QuotedSymbols: - Enabled: true -Style/RedundantArgument: - Enabled: true -Style/RedundantAssignment: - Enabled: false -Style/RedundantConstantBase: - Enabled: false -Style/RedundantFetchBlock: - Enabled: false -Style/RedundantFileExtensionInRequire: - Enabled: false -Style/RedundantRegexpCharacterClass: - Enabled: false -Style/RedundantRegexpEscape: - Enabled: false -Style/RedundantSelfAssignment: - Enabled: true -Style/SignalException: - EnforcedStyle: only_raise -Style/SingleArgumentDig: - Enabled: true -Style/SlicingWithRange: - Enabled: false -Style/SoleNestedConditional: - Enabled: true -Style/StringChars: - Enabled: true -Style/StringConcatenation: - Enabled: false -Style/StringLiterals: - EnforcedStyle: double_quotes -Style/SwapValues: - Enabled: true -Style/OpenStructUse: - Enabled: false -Style/SpecialGlobalVars: - Enabled: false -Style/SelectByRegexp: - Enabled: false - -# TODO these were temporarily disabled during the Ruby 2.7 -> 3.1 upgrade -# in order to keep the upgrade diff small, they will be enabled/fixed in -# a follow-on PR. -Naming/BlockForwarding: - Enabled: false +inherit_from: ../.rubocop.yml diff --git a/pub/.rubocop.yml b/pub/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/pub/.rubocop.yml +++ b/pub/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/python/.rubocop.yml b/python/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/python/.rubocop.yml +++ b/python/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/swift/.rubocop.yml b/swift/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/swift/.rubocop.yml +++ b/swift/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/terraform/.rubocop.yml b/terraform/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/terraform/.rubocop.yml +++ b/terraform/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml diff --git a/updater/.rubocop.yml b/updater/.rubocop.yml index a9f364a37fa..fc2019d46a3 100644 --- a/updater/.rubocop.yml +++ b/updater/.rubocop.yml @@ -1 +1 @@ -inherit_from: ../omnibus/.rubocop.yml +inherit_from: ../.rubocop.yml