GitHub
github.com › editorconfig › editorconfig › issues › 387
Deprecate `max_line_length` in favor of `rulers` · Issue #387 · editorconfig/editorconfig
February 11, 2019 - Problem I had to lock a conversation recently, because of the lack of clarity behind the max_line_length rule that's quite technically not even a rule yet. Considering the years of controversy behind this rule, I propose we deprecate it....
Author: editorconfig
Developer Community
developercommunity.visualstudio.com › idea › 567214 › support-max-line-length-in-editorconfig-for-visual.html
Support max_line_length in .editorconfig for Visual Studio
Skip to main content · Visual Studio · Guidelines Problems Suggestions Code of Conduct · Downloads · Visual Studio IDE Visual Studio Code Azure DevOps Team Foundation Server Accounts and Subscriptions · Subscriber Access · Microsoft Security Azure Dynamics 365 Microsoft 365 Microsoft ...
Add support for max_line_length
Please fill-in this template. I have a question that is specific to this extension; thus, inappropriate for the main EditorConfig issue tracker. I tried running code --disable-extensions and the is... More on github.com
Get line wrap width from .editorconfig max_line_length instead of custom Sonar XML config
The “Line too long” rule in Sonar lint (S103 - SonarCloud) has a maximumLineLength parameter which by default is set to 200 characters. This can be overridden by using a custom Sonarlint XML for each project. If you have other formatters that read the .editorconfig settings to get the ... More on community.sonarsource.com
Line length enforcement for Visual Studio and dotnet format?
The standard CLI formatting tool ( dotnet format ) is not able to be configured with a max_line_length property in .editorconfig. More on learn.microsoft.com
c# - How to enforce line character length width? - Stack Overflow
For a .NET 6+ solution I must enforce a hard 140‑column limit on every source‑code line. Visual Studio’s ruler shows the limit, but it’s only a visual aid—it doesn’t break the build or fail CI. Wha... More on stackoverflow.com
file format for defining coding styles (that is supported by various text editor plugins)
Factsheet
EditorConfig
editorconfig.org
EditorConfig
EditorConfig files use an INI format that is compatible with the format used by Python configparser Library, but [ and ] are allowed in the section names. The section names are filepath globs (case sensitive), similar to the format accepted by gitignore. Only forward slashes (/, not backslashes) are used as path separators and octothorpes (#) or semicolons (;) are used for comments. Comments should go on their own lines.
Sonar Community
community.sonarsource.com › suggest new features
Get line wrap width from .editorconfig max_line_length instead of custom Sonar XML config - Suggest new features - Sonar Community
December 1, 2023 - The “Line too long” rule in Sonar lint (S103 - SonarCloud) has a maximumLineLength parameter which by default is set to 200 characters. This can be overridden by using a custom Sonarlint XML for each project.
Editorconfig Guide
editorconfig.guide › doc › global › max-line-length
max-line-length — Max line length (.editorconfig)
Documentation for the .editorconfig key `max-line-length`. This option specifies the maximum allowed line length in characters. Lines longer than this…
Reddit
reddit.com › r/csharp › editorconfig or other way to control line length / wrapping/indenting style?
r/csharp on Reddit: EditorConfig Or Other Way To Control Line Length / Wrapping/Indenting Style?
January 27, 2022 - Based on conversations with other dev team leads and some managers/architects, the preference is essentially use the "Wrap every argument > Indent all arguments" style that Visual Studio has built in. Mostly I want to control for the crazy long line lengths some devs end up going with and the more automated that process can be the better. Am I missing some property in .editorconfig that would allow me to do this?
Medium
leapcell.medium.com › why-editorconfig-still-matters-even-with-prettier-around-29e414fc3e62
Why .editorconfig Still Matters Even with Prettier Around | by Leapcell | Medium
January 24, 2025 - # Mark the current directory as ... trim_trailing_whitespace = false max_line_length = off # Use tab indentation for Makefile [Makefile] indent_style = tab # Set indentation size to 2 for JavaScript files [*.js] indent_size = 2 · This example .editorconfig file demonstrates how to set ...
CSharpier
csharpier.com › docs › Configuration
Configuration | CSharpier
[*.{cs,csx}] # Non-configurable ... # end_of_line = lf - there is no 'auto' with an .editorconfig indent_style = space indent_size = 4 max_line_length = 100 [*.{config,csproj,props,slnx,targets,xaml,xml}] indent_style = space indent_size = 2 max_line_length = 100 ...
Editorconfig
spec.editorconfig.org › index.html
EditorConfig Specification — EditorConfig Specification 0.17.2 documentation
Section: the lines starting from a Section Header until the beginning of the next Section Header or the end of the file. Section names in EditorConfig files are filepath globs, similar to the format accepted by .gitignore. They support pattern matching through Unix shell-style wildcards.
DeepWiki
deepwiki.com › editorconfig-checker › editorconfig-checker › 5.5-line-length-and-other-rules
Line Length and Other Rules | editorconfig-checker/editorconfig-checker | DeepWiki
December 2, 2025 - This page documents the maximum line length validation rule (max_line_length) supported by editorconfig-checker. This validation rule ensures that lines in source files do not exceed a specified character limit. For indentation and whitespace rules, see 5.2. For line ending and final newline rules, see 5.3.
JetBrains
youtrack.jetbrains.com › issue › IDEA-154920
Support for max_line_length (force hard wrap) : IDEA-154920
In IntellliJ max_line_length affects the vertical right margin line. You can aslo use ij_wrap_on_typing which is IntelliJ-specific because there is no standard property like that. ... Forces hard line wrapping after the amount of characters specified. off to turn off this feature (use the editor settings). Source: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length