Vintic
Vintic
It is possible to modify default extension configs? If yes how could I do it? I found something about it on [uBlock page](https://github.com/gorhill/uBlock/wiki/Deploying-uBlock-Origin:-configuration): but seems it is changed for all...
Wrong line will be reported if bug is in cfoutput: Example, rule: VAR_INVALID_NAME, code: ``` ZXC TEST (#фывйс#) ``` will report, line 2, when it is 7.
`` lead to parsing error
This wont be parsed correctly because of: ' ``` ) / ```
Second cfargument wont be passed to element(final Element element, final Context context, final BugList bugs) function, because of `default="#["xx"]#"` ``` ``` Can be tested with rule ARG_HINT_MISSING
AVOID_QUERY_IN_LOOP, It's not a good practice to query a DB inside loop like `` and ` ` - that increase load to DB and response time. https://codeutopia.net/blog/2010/10/07/optimizing-sql-removing-queries-inside-loops/
Unused variable on line 3 ```cfml SELECT #testVar# ``` related: https://github.com/cflint/CFLint/issues/464
Obtain this error: Error in parsing : in on tag cfparam java.lang.IndexOutOfBoundsException: token index -1 out of range 0..1 at org.antlr.v4.runtime.BufferedTokenStream.get(BufferedTokenStream.java:186) at com.cflint.CFLint.syntaxError(CFLint.java:1600) ... Code to check: ``` WelcomeGoodbye: ```
Hi, found that cfloop will execute startFunction method that can lead to errors for some rules. Example: Execute UNUSED_LOCAL_VARIABLE rule for: ```coldfusion ``` startFunction clear `localVariables` list variable
Hi, I think would be more correct to name rule "UNSCOPED_VAR" instead of "missing_var", because it could be of any scope, not only local.