-
File:
```
component {
switch (foo) {
case -50:
break;
}
}
```
Result:
```
com.cflint.exception.CFLintScanException: java.lang.NullPointerException
at com.cflint.CFLint.pro…
-
I had the wrong cflint.jarPath set and while the extension complains if there isn't a cflint.jarPath set, it doesn't appear to validate that the jar configured in cflint.jarPath exists
-
Wondering how much work it would be to add junit-style xml report to commandbox-cflint? This tool is awesome for CI, and it would be a little bit nicer if it had a junit XML output. My tool of choice …
-
I'm getting this false positive using CFLint 1.4.0.
```
public void function test()
{
var _mail = "oui";
cfmail()
{
writeOutput( _mail );
}
}
```
`cflint: warning
INFO - Local va…
-
Hi,
after the recent update to VSCode v1.38 the popups, that appear when I hover over an ColdFusion tag with the mouse, look differently. I'm pretty sure before they contained the CFLint result and…
-
Bug happens when try
trying to process comment like:
````
"\n" +
"\n" +
"5--->\n" +
"";
````
in CommentReformatting.wrap(String) function.
`com.cflin…
-
https://github.com/cflint/CFLint/blob/ea8ffcdf83a73b5238ed02276f2463ebde44679c/src/main/java/com/cflint/plugins/core/QueryParamChecker.java#L26
Should be [^#]*#[^#] to instead of .*#[^#]
-
Hi there, I am following the instructions and I ran:
`./gradlew clean build`
But got the error:
```
FAILURE: Build failed with an exception.
* Where:
Build file '/Users/markdrew/Documents…
-
It looks like CFLint stopped working for me in the latest VS Code 1.37.1
When I open a CFM page, I see the following in the dev console:
`[Extension Host] [2019-09-05 12:15:36] cflint is active!…
-
```
// ...
var thisBase = getRowBaseFromMap(baseDataMap, row);
for( var v in baseVars ){
ar.Append(thisBase.KeyExists(v.shortname) ? thisBase[v.shortname] : '');
}…