Skip to content

Commit

Permalink
Maybe fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelroudnitski committed Jan 2, 2025
1 parent 4cd40d7 commit c9487eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,6 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Debug Dependencies
run: |
echo "Gemfile content:"
cat Gemfile
echo "--------------------"
echo "Gemfile.lock content:"
cat Gemfile.lock || echo "Gemfile.lock not found"
echo "--------------------"
echo "All gem dependencies:"
bundle list
echo "--------------------"
echo "Dependency tree:"
bundle exec ruby -e "require 'bundler'; puts Bundler.load.dependencies.map(&:to_s)"
echo "--------------------"
echo "RuboCop version:"
bundle exec rubocop --version
echo "--------------------"
echo "RuboCop config:"
bundle exec rubocop --show-cops
echo "--------------------"
echo "Searching for rubocop-discourse in all files:"
grep -R "rubocop-discourse" . || echo "No occurrences found"
- name: rubocop
uses: reviewdog/action-rubocop@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ AllCops:
SuggestExtensions: false
Exclude:
- 'spec/**/*'
- 'vendor/**/*'

Style/StringLiterals:
EnforcedStyle: double_quotes
Expand All @@ -35,3 +36,4 @@ Lint/MissingSuper:
Exclude:
- 'app/components/**/*'
- 'app/services/**/*'

0 comments on commit c9487eb

Please sign in to comment.