-
-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use EditorConfig as a config file in shfmt #393
Comments
Thanks for raising the issue. This sounds like a good idea in principle, because it doesn't add a new config file just for shfmt, and could mean better integration with existing standards and tools. Some questions:
My only remaining itch is the complexity. Right now, the tool behaves in a predictable way, irrespective of the current directory, and has very few external dependencies. This makes both aspects slightly worse, which should be taken into account. You could even call this a breaking change, unless reading the EditorConfig file is behind a flag. Lucky for you, I'm about to release v3.0, so we can make breaking changes right now. I'm still not sure that we want to, though. |
Another idea that comes to mind is meta-formatters. I assume some of them support shfmt among other formatters, and also support config files like EditorConfig. Have you given that a try? |
I was thinking so. Indentation was the main thing on my mind, but EditorConfig does also specify line-endings and trailing-whitespace (end-of-line and end-of-file) settings, which I don't believe are covered by
Yeah, I try to keep consistent with "specific beats general", and a flag seems much more intentional and specific than an automatically-discovered .editorconfig file
I don't think
So, I guess, in terms of prior art, I have one for, and one against
I'm familiar with |
If we auto-detect EditorConfig by default, then it would be a breaking change for anyone using It wouldn't affect anyone explicitly controlling indentation with |
I wanted to create a ticket to support modeline(*), so I looked for relevant tickets and, bam. I hadn't heard of EditorConfig, but it's a much better solution than supporting a modeline thingy. On the topic of tools supporting EditorConfig, and their site mentions three headless tools: ant, gradle and maven. I see tortoisegit also provides support on its merge tool, and Github has support for it when displaying files (in addition to, presumably, its editor). (*) Modeline from vim saves vim non-default settings as a comment with the file. |
I think that set of people is small, and 3.0 is around the corner, so I think this kind of backwards incompatible change will be OK. @dcsobral thanks for the hint about other tools using EditorConfig. However, as far as I can see, those tools need the user to specifically install a plugin and enable the feature, so it doesn't seem like a default. We're different because we have no existing config file of any kind. Another great thing about EditorConfig is that editors can define and use "domain-specific" configuration entries, and they will be ignored by editors that don't know about them. So we could in theory add support for every shfmt flag to EditorConfig without breaking other tools/editors, which I think is awesome. Let's do this. 3.0 can begin by simply learning how to indent form the config file. I only wonder about what section we should use for "shell language". |
Ah, I see other tools have had similar discussions: editorconfig/editorconfig-emacs#75 I quite like the |
editorconfig/editorconfig#404 is progressing quickly, so let's wait a week and see what the state is. We'll probably implement this before the language feature is well established, but we might as well see if the proposed syntax is defined in a few days. |
Similar to dlenski/wtf#15 , which is with respect to a different formatter |
Looks like that proposal has stalled a bit, so I'm going ahead with experimental support for now. I won't do anything non-official like |
I started looking at EditorConfig libs, and none of the existing ones fit my needs, so I wrote one. That took less time than trying to adapt one of the existing ones. That was a pretty big chunk of work done; adding the feature itself should just be a few hours more. |
Thank you all for your patience. The first version of this feature is now ready; please feel free to try it via I'll release one or two last pre-release tags in the coming weeks, but v3 is pretty much ready. I expect to release the final v3.0.0 before the end of the month, so please help me test the feature and give input while we can still do breaking changes. |
Howdie, love this project, great work!
One thing I've wondered about is how EditorConfig and
shfmt
interact. Currently, I have several projects where I need to take special care to invokeshfmt
in a way that does not contradict my EditorConfig settings. e.g. EditorConfig's indent_style and indent_size options versionsshfmt
's-i N
flagIt would be terrific for me, and maybe even a partial solution for #358 and #234 if
shfmt
, when no-i N
flag is provided, would look for .editorconfig files, and act appropriately:shfmt
behaviourshfmt -i 2
shfmt -i N
Let me know if this is the sort of thing you'd accept a PR for :)
Cheers!
The text was updated successfully, but these errors were encountered: