We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My code looks like
<cffunction name="loadHTML" access="public" returntype="struct" output="false"> <cfargument name="iBooking" type="numeric" required="true"> <cfargument name="iLang" type="numeric" required="true"> <cfset LOCAL.struResult = { bSuccess = false, bCaught = false, catch = {}, arrHTMLHead = [], arrHTML = [], arrHTMLFoot = [] }> <cfreturn LOCAL.struResult> </cffunction>
I run CFLint and look at the HTML report. Every entry in the VAR_HAS_PREFIX_OR_POSTFIX Warnings section lists the <cffunction tag under Expression.
CFLint
VAR_HAS_PREFIX_OR_POSTFIX Warnings
<cffunction
Expression
The UNQUOTED_STRUCT_KEY Warnings section lists the content of the cfset tag. That's what I would expect for VAR_HAS_PREFIX_OR_POSTFIX also.
UNQUOTED_STRUCT_KEY Warnings
cfset
VAR_HAS_PREFIX_OR_POSTFIX
The text was updated successfully, but these errors were encountered:
#476
28aaa6a
@bardware. thanks for pointing that out. It is fixed in dev
Sorry, something went wrong.
ryaneberly
No branches or pull requests
My code looks like
I run
CFLint
and look at the HTML report. Every entry in theVAR_HAS_PREFIX_OR_POSTFIX Warnings
section lists the<cffunction
tag underExpression
.The
UNQUOTED_STRUCT_KEY Warnings
section lists the content of thecfset
tag. That's what I would expect forVAR_HAS_PREFIX_OR_POSTFIX
also.The text was updated successfully, but these errors were encountered: