Disable a few dscanner checks for now

This commit is contained in:
Matthias Klumpp 2021-01-23 04:14:46 +01:00
parent 8599075631
commit 2b843f3b64

View File

@ -24,6 +24,8 @@ constructor_check="enabled"
unused_variable_check="enabled"
; Checks for unused labels
unused_label_check="enabled"
; Checks for unused function parameters
unused_parameter_check="disabled"
; Checks for duplicate attributes
duplicate_attribute="enabled"
; Checks that opEquals and toHash are both defined or neither are defined
@ -92,6 +94,14 @@ has_public_example="disabled"
assert_without_msg="disabled"
; Check indent of if constraints
if_constraints_indent="enabled"
; Check for @trusted applied to a bigger scope than a single function
trust_too_much="enabled"
; Check for redundant storage classes on variable declarations
redundant_storage_classes="enabled"
; Check for unused function return values
unused_result="disabled"
; ModuleFilters for selectively enabling (+std) and disabling (-std.internal) i
; ndividual checks
[analysis.config.ModuleFilters]
style_check = "-asgen.bindings"