Au3Check
Previous Top Next

Syntax:

#AutoIt3Wrapper_Au3Check_Parameters=-q -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7

The parameters set the app behaviour as follows:

·     -q         : quiet mode (this will only show errors and warnings)
·     -d         : set the "MustDeclareVars" option to True
·     -w 1      : give a warning if an include file is included more than once
·     -w 2      : give a warning if #comments-end (or #ce) is missing
·     -w 3      : give a warning if variables are already declared
·     -w 4      : give a warning if local variables are used in the global scope
·     -w 5      : give a warning if a local variable is declared but not used
·     -w 6      : give a warning when using Dim
·     -w 7      : give a warning if ByRef parameters are incorrect