default.yml in fashion_police-2.2.0 vs default.yml in fashion_police-2.3.0
- old
+ new
@@ -58,11 +58,11 @@
# Do not require `# frozen_string_literal: true` at the top of every file.
FrozenStringLiteralComment:
Enabled: false
-# Allow ASCII comments (e.g "…").
+# Allow non-ASCII comments (e.g "…").
Style/AsciiComments:
Enabled: false
# Do not comment the class we create, since the name should be self explanatory.
Documentation:
@@ -109,10 +109,15 @@
# Allow creating tables without timestamps, whe know what we are doing.
Rails/CreateTableWithTimestamps:
Enabled: false
+# Do not force the use of bulk change table when there are several actions in
+# a migration file
+Rails/BulkChangeTable:
+ Enabled: false
+
# Do not enforce the use of `delegate`, since small methods are easier to
# read.
Rails/Delegate:
Enabled: false
@@ -126,10 +131,14 @@
# Allow a nesting of up to 5 of describe/context blocks (default is 3).
RSpec/NestedGroups:
Max: 5
+# Allow chains message stubbing.
+RSpec/MessageChain:
+ Enabled: false
+
# Allow any number of expectations in an example, for performance.
RSpec/MultipleExpectations:
Enabled: false
# Allow using normal test doubles, since they are useful for mocking.
@@ -157,5 +166,10 @@
EnforcedStyle: literal
# Allow `if !` since `unless` can be harder to read.
Style/NegatedIf:
Enabled: false
+
+# Allow simple blocks in ActiveAdmin DSL.
+Style/SymbolProc:
+ Exclude:
+ - app/admin/**/*