Skip to content

Commit 038e62c

Browse files
justin808claude
andcommitted
Fix RuboCop config inheritance path in spec/pro
The spec/pro/.rubocop.yml file was trying to inherit from ../.rubocop.yml which would be spec/.rubocop.yml (doesn't exist). After the Phase 6 restructuring, spec/pro is two levels deep from the root, so it needs to inherit from ../../.rubocop.yml to get to the root config. This fixes the CI error: Configuration file not found: /home/runner/work/react_on_rails/react_on_rails/spec/.rubocop.yml Fixes https://github.com/shakacode/react_on_rails/actions/runs/19607768152/job/56149351667 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 0234881 commit 038e62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/pro/.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
inherit_from:
2-
- ../.rubocop.yml
2+
- ../../.rubocop.yml
33

44
Metrics/BlockLength:
55
Max: 180

0 commit comments

Comments
 (0)