linter
linter copied to clipboard
linter detects issue with "print" even when kDebugMode is used...and with multiple conditions
Describe the issue If you use kDebugMode with multiple conditions before a print statement, the linter thinks there is a problem.
To Reproduce
if (kDebugMode && condition2) print('nothing wrong here');
Expected behavior It should allow multiple conditions alongsize kDebugMode check.