editorconfig
editorconfig copied to clipboard
EditorConfig universal issue tracker and wiki
I often take over projects from other teams/developers and run into a problem where they accidentally use `indent_style = spaces` instead of `indent_style = space`. Their IDE doesn't recognise `spaces`...
Currently Editorconfig implementations support ranges with - and negation with ^ inside brackets in globs (for example, [^a-c]). But format description on website says nothing about it.
I have the following user settings: ```json { "editor.insertSpaces": true, "editor.detectIndentation": false, "editor.tabSize": 4, "[elixir]": { "editor.tabSize": 2, }, } ``` and an Elixir project **without** `.editorconfig` file. When I...
I'm playing with assigning an ngStyle in my typescript. At it's simplist I add the following property to my component: style: any = { 'display': 'grid', 'grid-gap': '1px', }; When...
This has probably been brought up before but I couldn't find anything. With tools like gofmt, prettier, phpcbf and friends gaining popularity it would great to have a way to...
It would be nice if we could have something like VS Code does have (from js-beautify if I'm not mistaken): "html.format.wrapAttributes": "force-expand-multiline", with additional options to be enforced: auto, force,...
The editorconfig website says: > It is acceptable and often preferred to leave certain EditorConfig properties unspecified. For example, tab_width need not be specified unless it differs from the value...
### 1. Summary It would be nice, if would be possible lint `.editorconfig` file. ### 2. Argumentation The user can make a typo(s) in `.editorconfig` file → in the future,...
comma-first style often implies that the comma is aligned dynamically e.g. ```sql select * , cast(timestamp as timestamp) from foo ``` ```js const a , b; ``` which would be...
This was discussed here: https://github.com/editorconfig/editorconfig/issues/234 Essentially, this option would correct a file with `foo\n\n\n` to `foo` if `insert_final_newline = false`, or `foo\n` if `insert_final_newline = true`. ## Want to back...