KamasamaK
KamasamaK
Given the following function ```cfml ``` The UNUSED_LOCAL_VARIABLE issue is triggered and the location is reported on the `cfhttp` tag instead of on `httpResponse`.
In the cases where the file is an interface or the function is abstract, it doesn't make sense to enforce the UNUSED_METHOD_ARGUMENT rule.
I have removed semicolons in a component body, function body, and within `` tags in a tag file and none of them are reporting MISSING_SEMI. I do not have that...
This will be somewhat dependent on the engine, but there should be rules for reporting use of deprecated features -- functions, tags, attributes. See [ACF Deprecated Features](https://helpx.adobe.com/coldfusion/deprecated-features.html)
I don't use multiple assignment in CFML, but I found it used in TestBox as shown below. I didn't even know CFML had multiple assignment, but it seems valid in...
I've seen this a lot. Someone has written something like ``` ... ``` when it would be preferable to just write ``` ... ``` The hashes in that example are...
A `cfm` file with the content ``` ``` has the following JSON output ```json { "version" : "1.4.1", "timestamp" : 1540257038, "issues" : [ { "severity" : "INFO", "id" :...
The following are legal ways to declare a struct or array. - `addressComponents.streetName = "Main";` - `sampleCollection[7] = "Hello, World";` It should recommend being explicit with the type declaration in...
Including the page name in the param header is redundant. I think it looks better without it and is more consistent with the other section headers.