Skip to content

Commit 0c2f96c

Browse files
justin808claude
andcommitted
Fix Pro ESLint configuration to ignore open-source package
The Pro ESLint was linting files from the open-source package (packages/react-on-rails/) which has its own separate ESLint config. This caused lint failures in CI when the Pro lint job ran. Added '../packages/react-on-rails/' to globalIgnores to ensure Pro only lints Pro-specific code. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 679895d commit 0c2f96c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

react_on_rails_pro/eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export default defineConfig([
2222
'spec/react_on_rails/dummy-for-generators',
2323
// includes some generated code
2424
'spec/dummy/client/app/packs/server-bundle.js',
25+
'../packages/react-on-rails/', // Ignore open-source package (has its own linting)
2526
'../packages/react-on-rails-pro-node-renderer/lib/',
2627
'../packages/react-on-rails-pro-node-renderer/tests/fixtures',
2728
'**/node_modules/',

0 commit comments

Comments
 (0)