Andrew

Results 882 issues of Andrew

As someone with limited time, I want editorconfig-tools to go ahead and show me ALL trailing whitespace lines, so that I don't have to change one line, rerun editorconfig-tools, over...

Sometimes editorconfig-tools reports the wrong line number for trailing whitespace, an off by one error.

I like to run `editorconfig-tools **/*` on large projects, to see rules violations for all files. However, I want editorconfig-tools to automatically skip binary files, so that I don't see...

I want to enforce single quotes for strings across all my JavaScript (*.js) files, but for some reason this linter is ignoring `lib/regenboog.js`. Code: https://github.com/mcandre/regenboog/tree/ac12033014bc08e08988ecedb461263b8005f4a4 Configuration: ``` [*.js] quote_type =...

As a lint user, I want to see _all_ occurrences of trailing whitespace for each file, not just the first occurence, so that I can more quickly address these.

As a lint user, I want editorconfig-tools to display the line number of the first occurrence of `indent_char` failures, so that I can find the offending line more easily in...

As a Markdown author, I want to ensure most of my code files are properly indented, but I want editorconfig-tools to ignore code inside triple backticks (` ` `) in...

As a power user, I want editorconfig-tools to exit failure (`1`) if any editorconfig rules violations are found, so that editorconfig-tools makes my build fail.

As a reader with blurred vision, I want editorconfig-tools to make indentation exception messages more clear, so that I can quickly identify what the indentation is and should be. Rather...

.editorconfig: https://github.com/mcandre/dotfiles/blob/bf6fd265e71d59f539121cf101135b2c49e2f682/.editorconfig .tidyrc: https://github.com/mcandre/dotfiles/blob/bf6fd265e71d59f539121cf101135b2c49e2f682/.tidyrc Trace: ``` $ editorconfig-tools .tidyrc .tidyrc failed max_line_length on line 15: line is 125 chars, it should be 80 ``` Line 15 is just `literal-attributes: true`...