2019-06-06 13:38:19 +08:00
|
|
|
require:
|
|
|
|
- rubocop-performance
|
|
|
|
- rubocop-rails
|
2019-04-16 16:05:50 +08:00
|
|
|
|
2016-06-13 22:29:50 +08:00
|
|
|
AllCops:
|
2018-12-20 04:09:34 +08:00
|
|
|
TargetRubyVersion: 2.5
|
2016-08-06 23:45:37 +08:00
|
|
|
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
|
2016-08-07 19:06:51 +08:00
|
|
|
# to ignore them, so only the ones explicitly set in this file are enabled.
|
2016-06-13 22:29:50 +08:00
|
|
|
DisabledByDefault: true
|
2016-08-06 23:45:37 +08:00
|
|
|
Exclude:
|
2019-10-07 08:15:32 +08:00
|
|
|
- '**/tmp/**/*'
|
2016-08-06 23:45:37 +08:00
|
|
|
- '**/templates/**/*'
|
|
|
|
- '**/vendor/**/*'
|
2016-12-24 22:33:02 +08:00
|
|
|
- 'actionpack/lib/action_dispatch/journey/parser.rb'
|
2018-04-19 23:20:33 +08:00
|
|
|
- 'railties/test/fixtures/tmp/**/*'
|
2018-12-25 04:16:22 +08:00
|
|
|
- 'actionmailbox/test/dummy/**/*'
|
2019-01-05 08:43:11 +08:00
|
|
|
- 'actiontext/test/dummy/**/*'
|
2019-04-07 19:30:14 +08:00
|
|
|
- '**/node_modules/**/*'
|
2016-06-13 22:29:50 +08:00
|
|
|
|
2018-07-26 16:33:49 +08:00
|
|
|
Performance:
|
|
|
|
Exclude:
|
|
|
|
- '**/test/**/*'
|
|
|
|
|
2018-07-03 11:11:28 +08:00
|
|
|
# Prefer assert_not over assert !
|
|
|
|
Rails/AssertNot:
|
Add custom RuboCop for `assert_not` over `refute`
Since at least cf4afc4 we have preferred `assert_not` methods over
`refute` methods. I have seen plenty of comments in PRs about this,
and we have tried to fix it a few times (5294ad8, e45f176, 8910f12,
41f50be, d4cfd54, 48a183e, and 211adb4), but the `refute` methods
keep sneaking back in.
This custom RuboCop will take care of enforcing this preference, so we
don't have to think about it again. I suspect there are other similar
stylistic preferences that could be solved with some custom RuboCops, so
I will definitely keep my eyes open. `assert_not` over `assert !` might
be a good candidate, for example.
I wasn't totally sure if `ci/custom_cops` was the best place to put
this, but nothing else seemed quite right. At one point I had it set up
as a gem, but I think custom cops like this would have limited value
in another context.
I want to see how code climate handles the new cops before
autocorrecting the existing violations. If things go as expected, I will
push another commit with those corrections.
2018-04-04 08:50:00 +08:00
|
|
|
Include:
|
2018-04-20 04:25:39 +08:00
|
|
|
- '**/test/**/*'
|
Add custom RuboCop for `assert_not` over `refute`
Since at least cf4afc4 we have preferred `assert_not` methods over
`refute` methods. I have seen plenty of comments in PRs about this,
and we have tried to fix it a few times (5294ad8, e45f176, 8910f12,
41f50be, d4cfd54, 48a183e, and 211adb4), but the `refute` methods
keep sneaking back in.
This custom RuboCop will take care of enforcing this preference, so we
don't have to think about it again. I suspect there are other similar
stylistic preferences that could be solved with some custom RuboCops, so
I will definitely keep my eyes open. `assert_not` over `assert !` might
be a good candidate, for example.
I wasn't totally sure if `ci/custom_cops` was the best place to put
this, but nothing else seemed quite right. At one point I had it set up
as a gem, but I think custom cops like this would have limited value
in another context.
I want to see how code climate handles the new cops before
autocorrecting the existing violations. If things go as expected, I will
push another commit with those corrections.
2018-04-04 08:50:00 +08:00
|
|
|
|
2018-07-03 11:11:28 +08:00
|
|
|
# Prefer assert_not_x over refute_x
|
|
|
|
Rails/RefuteMethods:
|
2018-04-17 20:37:35 +08:00
|
|
|
Include:
|
2018-04-20 04:25:39 +08:00
|
|
|
- '**/test/**/*'
|
2018-04-17 20:37:35 +08:00
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Prefer &&/|| over and/or.
|
|
|
|
Style/AndOr:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2016-06-13 22:29:50 +08:00
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Align `when` with `case`.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/CaseIndentation:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2016-06-13 22:29:50 +08:00
|
|
|
|
2019-11-24 08:44:32 +08:00
|
|
|
Layout/ClosingHeredocIndentation:
|
|
|
|
Enabled: true
|
|
|
|
|
2016-09-14 16:57:52 +08:00
|
|
|
# Align comments with method definitions.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/CommentIndentation:
|
2016-09-14 16:57:52 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2018-01-18 11:09:16 +08:00
|
|
|
Layout/ElseAlignment:
|
|
|
|
Enabled: true
|
|
|
|
|
2018-04-22 01:13:34 +08:00
|
|
|
# Align `end` with the matching keyword or starting expression except for
|
|
|
|
# assignments, where it should be aligned with the LHS.
|
|
|
|
Layout/EndAlignment:
|
|
|
|
Enabled: true
|
|
|
|
EnforcedStyleAlignWith: variable
|
|
|
|
AutoCorrect: true
|
|
|
|
|
2017-07-10 21:36:57 +08:00
|
|
|
Layout/EmptyLineAfterMagicComment:
|
|
|
|
Enabled: true
|
|
|
|
|
2019-06-12 20:30:49 +08:00
|
|
|
Layout/EmptyLinesAroundAccessModifier:
|
|
|
|
Enabled: true
|
|
|
|
EnforcedStyle: only_before
|
|
|
|
|
2018-07-12 20:29:48 +08:00
|
|
|
Layout/EmptyLinesAroundBlockBody:
|
|
|
|
Enabled: true
|
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# In a regular class definition, no empty lines around the body.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/EmptyLinesAroundClassBody:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2016-06-13 22:29:50 +08:00
|
|
|
|
2017-02-12 19:44:15 +08:00
|
|
|
# In a regular method definition, no empty lines around the body.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/EmptyLinesAroundMethodBody:
|
2017-02-12 19:44:15 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# In a regular module definition, no empty lines around the body.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/EmptyLinesAroundModuleBody:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2016-07-17 15:10:45 +08:00
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
|
|
|
|
Style/HashSyntax:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2016-07-17 15:10:45 +08:00
|
|
|
|
2019-11-28 07:53:47 +08:00
|
|
|
Layout/FirstArgumentIndentation:
|
2019-06-06 13:38:19 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2016-07-21 19:49:13 +08:00
|
|
|
# Method definitions after `private` or `protected` isolated calls need one
|
|
|
|
# extra level of indentation.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/IndentationConsistency:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2019-08-15 20:56:18 +08:00
|
|
|
EnforcedStyle: indented_internal_methods
|
2016-07-17 15:10:45 +08:00
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Two spaces, no tabs (for indentation).
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/IndentationWidth:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
2016-07-17 15:10:45 +08:00
|
|
|
|
2017-12-14 16:30:54 +08:00
|
|
|
Layout/LeadingCommentSpace:
|
|
|
|
Enabled: true
|
|
|
|
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceAfterColon:
|
2016-10-29 11:05:58 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceAfterComma:
|
2016-10-29 11:05:58 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2018-12-08 07:11:38 +08:00
|
|
|
Layout/SpaceAfterSemicolon:
|
|
|
|
Enabled: true
|
|
|
|
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceAroundEqualsInParameterDefault:
|
2016-10-29 11:05:58 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceAroundKeyword:
|
2016-10-29 11:05:58 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2017-12-12 19:00:50 +08:00
|
|
|
Layout/SpaceBeforeComma:
|
2018-12-08 07:11:38 +08:00
|
|
|
Enabled: true
|
2017-12-12 19:00:50 +08:00
|
|
|
|
2019-04-12 00:20:25 +08:00
|
|
|
Layout/SpaceBeforeComment:
|
|
|
|
Enabled: true
|
|
|
|
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceBeforeFirstArg:
|
2018-12-08 07:11:38 +08:00
|
|
|
Enabled: true
|
2016-10-29 11:05:58 +08:00
|
|
|
|
2017-11-27 14:16:12 +08:00
|
|
|
Style/DefWithParentheses:
|
|
|
|
Enabled: true
|
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Defining a method with parameters needs parentheses.
|
|
|
|
Style/MethodDefParentheses:
|
|
|
|
Enabled: true
|
|
|
|
|
2017-07-09 20:06:36 +08:00
|
|
|
Style/FrozenStringLiteralComment:
|
|
|
|
Enabled: true
|
|
|
|
EnforcedStyle: always
|
2017-07-23 23:36:41 +08:00
|
|
|
Exclude:
|
|
|
|
- 'actionview/test/**/*.builder'
|
|
|
|
- 'actionview/test/**/*.ruby'
|
2017-07-25 04:20:53 +08:00
|
|
|
- 'actionpack/test/**/*.builder'
|
|
|
|
- 'actionpack/test/**/*.ruby'
|
2017-08-22 13:32:27 +08:00
|
|
|
- 'activestorage/db/migrate/**/*.rb'
|
2018-07-23 08:33:25 +08:00
|
|
|
- 'activestorage/db/update_migrate/**/*.rb'
|
2018-12-25 04:16:22 +08:00
|
|
|
- 'actionmailbox/db/migrate/**/*.rb'
|
2019-01-05 08:43:11 +08:00
|
|
|
- 'actiontext/db/migrate/**/*.rb'
|
2017-07-09 20:06:36 +08:00
|
|
|
|
2018-02-28 12:33:37 +08:00
|
|
|
Style/RedundantFreeze:
|
|
|
|
Enabled: true
|
|
|
|
|
2016-08-16 15:30:11 +08:00
|
|
|
# Use `foo {}` not `foo{}`.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceBeforeBlockBraces:
|
2016-08-16 15:30:11 +08:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
# Use `foo { bar }` not `foo {bar}`.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceInsideBlockBraces:
|
2016-08-16 15:30:11 +08:00
|
|
|
Enabled: true
|
2018-09-26 01:18:20 +08:00
|
|
|
EnforcedStyleForEmptyBraces: space
|
2016-08-16 15:30:11 +08:00
|
|
|
|
|
|
|
# Use `{ a: 1 }` not `{a:1}`.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceInsideHashLiteralBraces:
|
2016-08-16 15:30:11 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/SpaceInsideParens:
|
2016-10-29 11:05:58 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Check quotes usage according to lint rule below.
|
|
|
|
Style/StringLiterals:
|
|
|
|
Enabled: true
|
|
|
|
EnforcedStyle: double_quotes
|
|
|
|
|
|
|
|
# Detect hard tabs, no hard tabs.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/Tab:
|
2016-08-06 23:45:37 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2019-11-28 07:53:47 +08:00
|
|
|
# Empty lines should not have any spaces.
|
|
|
|
Layout/TrailingEmptyLines:
|
2016-08-06 23:45:37 +08:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
# No trailing whitespace.
|
2017-05-25 02:33:50 +08:00
|
|
|
Layout/TrailingWhitespace:
|
2016-08-06 23:45:37 +08:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
# Use quotes for string literals when they are enough.
|
2019-08-20 20:52:53 +08:00
|
|
|
Style/RedundantPercentQ:
|
2016-07-20 11:35:11 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2019-03-06 09:01:33 +08:00
|
|
|
Lint/AmbiguousOperator:
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
Lint/AmbiguousRegexpLiteral:
|
|
|
|
Enabled: true
|
|
|
|
|
2019-02-01 13:16:55 +08:00
|
|
|
Lint/ErbNewArguments:
|
|
|
|
Enabled: true
|
|
|
|
|
2016-08-06 23:45:37 +08:00
|
|
|
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
|
|
|
|
Lint/RequireParentheses:
|
|
|
|
Enabled: true
|
2017-10-28 20:15:34 +08:00
|
|
|
|
2018-12-28 06:33:05 +08:00
|
|
|
Lint/ShadowingOuterLocalVariable:
|
|
|
|
Enabled: true
|
|
|
|
|
2019-11-28 07:53:47 +08:00
|
|
|
Lint/RedundantStringCoercion:
|
2018-05-21 20:04:01 +08:00
|
|
|
Enabled: true
|
|
|
|
|
2018-08-16 12:05:05 +08:00
|
|
|
Lint/UriEscapeUnescape:
|
|
|
|
Enabled: true
|
|
|
|
|
2019-01-09 17:09:01 +08:00
|
|
|
Lint/UselessAssignment:
|
|
|
|
Enabled: true
|
|
|
|
|
2019-01-09 11:00:08 +08:00
|
|
|
Lint/DeprecatedClassMethods:
|
|
|
|
Enabled: true
|
|
|
|
|
2018-08-19 07:12:05 +08:00
|
|
|
Style/ParenthesesAroundCondition:
|
|
|
|
Enabled: true
|
|
|
|
|
2018-12-21 01:44:01 +08:00
|
|
|
Style/RedundantBegin:
|
|
|
|
Enabled: true
|
|
|
|
|
2017-11-01 06:32:04 +08:00
|
|
|
Style/RedundantReturn:
|
|
|
|
Enabled: true
|
|
|
|
AllowMultipleReturnValues: true
|
|
|
|
|
2017-10-28 20:15:34 +08:00
|
|
|
Style/Semicolon:
|
|
|
|
Enabled: true
|
|
|
|
AllowAsExpressionSeparator: true
|
2018-02-22 14:26:48 +08:00
|
|
|
|
|
|
|
# Prefer Foo.method over Foo::method
|
|
|
|
Style/ColonMethodCall:
|
|
|
|
Enabled: true
|
2018-03-30 10:29:55 +08:00
|
|
|
|
|
|
|
Style/TrivialAccessors:
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
Performance/FlatMap:
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
Performance/RedundantMerge:
|
|
|
|
Enabled: true
|
2018-07-29 05:37:17 +08:00
|
|
|
|
|
|
|
Performance/StartWith:
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
Performance/EndWith:
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
Performance/RegexpMatch:
|
|
|
|
Enabled: true
|
2018-05-17 16:32:27 +08:00
|
|
|
|
2019-03-06 08:31:55 +08:00
|
|
|
Performance/ReverseEach:
|
|
|
|
Enabled: true
|
|
|
|
|
2018-05-17 16:32:27 +08:00
|
|
|
Performance/UnfreezeString:
|
|
|
|
Enabled: true
|