Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
naqvis committed Nov 14, 2024
1 parent 2a09dae commit 16bd7f5
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions .ameba.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
Lint/NotNil:
Description: Identifies usage of `not_nil!` calls
Enabled: false
Style/QueryBoolMethods:
Enabled: false
Severity: Warning

Naming/BlockParameterName:
Description: Disallows non-descriptive block parameter names
Enabled: false
Severity: Convention

Lint/SpecFilename:
Description: Enforces spec filenames to have `_spec` suffix
Enabled: false
Severity: Warning

Naming/QueryBoolMethods:
Description: Reports boolean properties without the `?` suffix
Enabled: false
Severity: Convention

Documentation/DocumentationAdmonition:
Description: Reports documentation admonitions
Enabled: false
Severity: Warning

Lint/UselessAssign:
Description: Disallows useless variable assignments
Enabled: false
Severity: Warning

Lint/ShadowedArgument:
Description: Disallows shadowed arguments
Enabled: false
Severity: Warning

0 comments on commit 16bd7f5

Please sign in to comment.