Skip to content

Commit 98fa6e7

Browse files
Fix RuboCop command in linters documentation
- Change 'rubocop -a' to 'bundle exec rubocop -A' - Use bundle exec as per CLAUDE.md requirements - Use -A flag instead of deprecated -a flag Co-authored-by: Justin Gordon <[email protected]>
1 parent 8c32a63 commit 98fa6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/contributor-info/linters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you haven't tried the autofix options for `eslint` and `rubocop`, you're seri
1010
2. **Rubocop:** Be sure to be in the correct directory where you have Ruby files, usually the top level of your Rails project.
1111

1212
```bash
13-
rubocop -a
13+
bundle exec rubocop -A
1414
```
1515

1616
3. **ESLint:** Be sure to be in the correct directory where you have JS files.

0 commit comments

Comments
 (0)