Skip to content

Commit 72a2b2e

Browse files
authored
Merge pull request #5085 from BBasile/issue-17139
fix issue 17139 - dscanner needs to handle 'scope' function attributes
2 parents f02b106 + 4fab501 commit 72a2b2e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.dscanner.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,9 @@ static_if_else_check="enabled"
7272
lambda_return_check="enabled"
7373
; Check for auto function without return statement
7474
auto_function_check = "disabled"
75+
; Check for explicitly annotated unittests
76+
explicitly_annotated_unittests = "disabled"
77+
; Check for sortedness of imports
78+
imports_sortedness = "disabled"
79+
; Check for useless usage of the final attribute
80+
final_attribute_check = "disabled"

posix.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ checkwhitespace: $(LIB)
485485

486486
../dscanner:
487487
git clone https://github.com/Hackerpilot/Dscanner ../dscanner
488-
git -C ../dscanner checkout tags/v0.4.0-beta.3
488+
git -C ../dscanner checkout tags/v0.4.0-beta.5
489489
git -C ../dscanner submodule update --init --recursive
490490

491491
../dscanner/dsc: ../dscanner

0 commit comments

Comments
 (0)