Tim Beadle

Results 4 issues of Tim Beadle

I'm getting this false positive using CFLint 1.4.0. ```cfml public boolean function getAPIVersion( required numeric requestedAPIVersion ) cachedwithin=createTimeSpan(1,0,0,0) { return (variables.availableAPIVersions.find(arguments.requestedAPIVersion) > 0) ? arguments.requestedAPIVersion : variables.availableAPIVersions[1]; } ``` `[cflint]...

bug
false positive

```cfml var address = variables.addressService.getAddressById( addressId = billingAddressId ); addressColumns.each(function (addressColumn) { variables['billing' & addressColumn] = address.find(addressColumn, ''); }); ``` `[cflint] UNUSED_LOCAL_VARIABLE: Local variable address is not used in function...

bug
false positive

Upgrading from chai v4 to chai v5 yields the following eslint error: ```shell cfpathcheck/test/cfpathcheck.spec.js 1:24 error Parse errors in imported module 'chai': Unexpected token ; (146:10) import/namespace ``` The line...

In the [Build Secrets doc](https://fly.io/docs/reference/build-secrets/), it mentions in both the Dockerfile and deploy command that it is possible to mount and pass multiple build secrets: ```dockerfile # Note: You can...