Last active
June 25, 2022 03:45
-
-
Save komagata/9ad19373b9f9059ca52e727fbb7f2944 to your computer and use it in GitHub Desktop.
Fjord rubocop configuration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require: | |
- rubocop-rails | |
AllCops: | |
Exclude: | |
- '**/templates/**/*' | |
- '**/vendor/**/*' | |
- 'app/views/**/*' | |
- 'config/**/*' | |
- 'node_modules/**/*' | |
- 'db/schema.rb' | |
- 'storage/**/*' | |
- 'tmp/**/*' | |
Metrics/MethodLength: | |
Exclude: | |
- 'db/migrate/*.rb' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require: | |
- rubocop-performance | |
Performance: | |
Exclude: | |
- '**/test/**/*' | |
Layout/LineLength: | |
Max: 160 | |
Style/Documentation: | |
Enabled: false | |
Style/ClassAndModuleChildren: | |
Enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment