diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c4c98ac..b8c73c6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: diff --git a/.rubocop.yml b/.rubocop.yml index e50c5d0..ad4e42f 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -12,6 +12,7 @@ AllCops: SuggestExtensions: false Exclude: - 'spec/**/*' + - 'vendor/**/*' Style/StringLiterals: EnforcedStyle: double_quotes @@ -35,3 +36,4 @@ Lint/MissingSuper: Exclude: - 'app/components/**/*' - 'app/services/**/*' +