Merge pull request #4792 from syeopite/disable-ameba-rules

Ameba: Disable rules
This commit is contained in:
syeopite 2024-07-27 02:31:31 +00:00 committed by GitHub
commit 90e94d4e6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,6 +23,10 @@ Lint/ShadowingOuterLocalVar:
Lint/NotNil: Lint/NotNil:
Enabled: false Enabled: false
Lint/SpecFilename:
Excluded:
- spec/parsers_helper.cr
# #
# Style # Style
@ -38,7 +42,20 @@ Style/ParenthesesAroundCondition:
Enabled: false Enabled: false
# This requires a rewrite of most data structs (and their usage) in Invidious. # This requires a rewrite of most data structs (and their usage) in Invidious.
Style/QueryBoolMethods: Naming/QueryBoolMethods:
Enabled: false
Naming/AccessorMethodName:
Enabled: false
Naming/BlockParameterName:
Enabled: false
# Hides TODO comment warnings.
#
# Call `bin/ameba --only Documentation/DocumentationAdmonition` to
# list them
Documentation/DocumentationAdmonition:
Enabled: false Enabled: false