CircleCIでのみrubocopがエラーになる
現象
手元の開発環境ではrubocopに怒られない。
% bundle exec rubocop
Inspecting 31 files
...............................
31 files inspected, no offenses detected
だがしかし、CircleCIのコンテナで動かすとエラーになる!
#!/bin/bash -eo pipefail
bundle exec rubocop
Error: The `Style/TrailingCommaInLiteral` cop no longer exists. Please use `Style/TrailingCommaInArrayLiteral` and/or `Style/TrailingCommaInHashLiteral` instead.
(obsolete configuration found in vendor/bundle/ruby/2.5.0/gems/public_suffix-3.0.2/.rubocop_defaults.yml, please update it)
Exited with code 2
原因
理由は簡単だった。bundle installしたgemsは手元ではシステム(というかrbenv)の配下にロードされるのに対して、CircleCIではvendor/bundle配下にロードするように指定してあった。
- run:
name: install dependencies
command: |
yarn install
bundle install --jobs=4 --retry=3 --path vendor/bundle
このためrubocopがvendor配下のgemsたちまでチェックしてしまっていたのだった。
対策
vendor配下をrubocopの対象外にすることで解決した。
AllCops:
TargetRubyVersion: 2.5
Exclude:
- 'bin/**/*'
- 'node_modules/**/*'
- 'vendor/**/*'
参考
Author And Source
この問題について(CircleCIでのみrubocopがエラーになる), 我々は、より多くの情報をここで見つけました https://qiita.com/kabi5/items/40ea864757162e931be1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .