前提・実現したいこと
circleciのrun rudocopの箇所でエラーが発生してしまい先に進めず困っています。
なにかアドバイス等ありましたらよろしくお願いします。
発生している問題・エラーメッセージ
#!/bin/bash -eo pipefail bundle exec rubocop --parallel /home/circleci/potepanec/.rubocop.yml: Warning: no department given for LineLength. Configuration file not found: /home/circleci/potepanec/.rubocop_airbnb.yml Exited with code exit status 2 CircleCI received exit code 2
該当のソースコード
rails
1inherit_from: 2 - .rubocop_airbnb.yml 3 4Rails: 5 Enabled: true 6 7LineLength: 8 Max: 130 9 10AllCops: 11 Exclude: 12 - 'db/**/*' 13 - 'config/**/*' 14 - 'script/**/*' 15 - 'node_modules/**/*' 16 - 'bin/*' 17 - '**/Gemfile' 18 - 'vendor/**/*' 19 - '.git/**/*' 20 21AsciiComments: 22 Enabled: false 23 24Documentation: 25 Enabled: false 26 27ClassAndModuleChildren: 28 Enabled: false 29 30Style/FrozenStringLiteralComment: 31 Enabled: false
試したこと
circleciのファイル内に.rubocop.ymlと.rubocop_airbnb.ymlを入れて再度add~からの処理を行ってみましたが結果としてさらに長文のエラーが発生してしまい現在は戻してある状態です。
ファイルの配置場所等に問題があるのかと考えていますが。