commandbox-cfformat
commandbox-cfformat copied to clipboard
A CommandBox module for formatting CFML component files.
Is there a way to tell cfformat what tags are ok to not have a closing tag? ```
This is kind of an absurd request, since you've already built a Sublime Text plugin for formatting CFML, but I was wondering if there are any plans to make this...
The property alignment is incorrect when the number of attributes differs between properties. ``` property name="registrationId" type="numeric"; property name="lastName" type="string"; property name="firstName" type="string"; property name="email" type="string"; property name="locationId" type="numeric" setter="false";...
I've ran into this a couple of times now. I deal with an app that has a bunch of .cfm files and those cfm files contain `...` blocks. Cfformat will...
I did not find anything in existing settings, please let me know if I am just missing it. I'd like cfformat to not line up the content in cfscript blocks...
@jcberquist Java Editors have two settings which are really helpful when formatting comments.  1) Ability to align parameter descriptions This aligns the hint portions of the params. This is...
```cfml ``` This will fail the check-tag to be honnest no certain how to fix this.
@jcberquist what can we do to do alignment for struct literals when doing method calls or assignments. This code ```js var s = { themeName : currentSite.getActiveTheme(), themeRecord : themeRecord,...
Here's the use case. ``` results = service.getApplications( name: "John", sort_by: "Name DESC" ) writeDump( var: results, label: "results" ); ``` I'd like to always break named arguments to one...
Would it be possible to expand formatting rule for when struct keys need to be quoted to be a bit more like ESLint's rule? https://eslint.org/docs/rules/quote-props While I generally don't have...