-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.standard.yml
21 lines (21 loc) · 1.02 KB
/
.standard.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ignore:
- 'lib/theme_partials.rb':
- Style/GlobalVars
- 'app/controllers/concerns/loads_and_authorizes_resource.rb':
- Security/Eval # TODO we should have this audited.
- Style/EvalWithLocation # TODO we should have this audited.
- 'app/models/webhooks/outgoing/delivery_attempt.rb':
- Lint/RescueException # TODO would it be okay to rescue `StandardError`?
- 'app/models/scaffolding/completely_concrete/tangible_things/targets_one_action.rb':
- Lint/UnreachableCode # I couldn't figure out a nice way of doing this in the actual template.
- 'app/models/scaffolding/completely_concrete/tangible_things/targets_one_parent_action.rb':
- Lint/UnreachableCode # I couldn't figure out a nice way of doing this in the actual template.
- '**/*':
- Style/TrailingCommaInArguments
- Style/TrailingCommaInArrayLiteral
- Style/TrailingCommaInHashLiteral
- Style/CommentedKeyword
- 'app/controllers/**/*':
- Style/RedundantAssignment
- 'lib/scaffolding/transformer.rb':
- Layout/EndAlignment