John Berquist
John Berquist
I am not sure about implementing everything here, but I did try out getting parameter descriptions and `@throws` descriptions aligned in `v0.17.1`. There is a new settings for it: `alignment.doc_comments`.
Are you referring to the empty lines? e.g. this: ```cfc /** * get Java FileInputStream for resource bundle * @rbFilePath path + filename for resource, including locale + .properties *...
Alright, I have tried making this a lot more opinionated. It will now group @params and @throws together, with empty lines between the groups. It might be too opinionated now...
Interesting, I am not aware of `default` being a valid keyword when declaring a function? Also, you aren't specifying the `function` keyword. Is this a Java interface? In any case,...
Sorry about the delayed response, it is hard to tell exactly what is going on without some sample code that produces this error. Do you have some sample code you...
Thanks for pointing that out. It should definitely always return an array. The code currently in use for converting XML data doesn't make that distinction, so you can see how...
I am not sure what you are trying to do when you get the signature mismatch? This method is there to help with POSTing from a browser directly to S3,...
Are you trying to do PUT or POST requests? This method is only for using POST. For example: ```cfc // in CFML // Whatever form fields you intend to pass...
Interesting, do you have any idea what the Stripe API is returning in those cases? Obviously the expectation would be that a request to `/charges` would return JSON with the...
Sure, a pull request would be great - I would prefer to keep the handling for Request-Id and Content-Type separate, so could you just emulate the logic for Request-Id in...