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 ...
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…
GitHub
github.com › editorconfig › editorconfig › wiki › Property-research:-maximum-line-length
Property research: maximum line length · editorconfig/editorconfig Wiki · GitHub
December 31, 2023 - Set maxLineLen to the line max width, and wrap to hard for real line break. See these buffer local properties here. Not possible. Settings, Editor, Margins and caret, right margin hint: visible line & hint column ... EditorConfig Guidelines extension adds support for guidelines .editorconfig property.
Author: editorconfig
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.
JetBrains
youtrack.jetbrains.com › issue › WEB-40752
max_line_length set in .editorconfig for Dart files should ...
March 27, 2023 - Our website uses some cookies and records your IP address for the purposes of accessibility, security, and managing your access to the telecommunication network. You can disable data collection and cookies by changing your browser settings, but it may affect how this website functions.
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
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 ...
GitHub
github.com › editorconfig › editorconfig › issues › 321
Allow unlimited `max_line_length` · Issue #321 · editorconfig/editorconfig
August 12, 2017 - Emacs and Atom, at least, use the max_line_length property to set the line length for their automatic paragraph reformatting features. For projects which do not hard-wrap lines of prose, it would be helpful if EditorConfig supported unlimited line lengths. At first I'd guessed that I should set the max_line_length property to unset or off, but those restore the editor's/user's default preference.
Author: editorconfig
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 ...
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 the root root = true # General settings for all files [*] indent_style = space indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true # Special settings for Markdown files [*.md] 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 consistent coding styles and formatting for different file types, ensuring that team members using various editors maintain a unified code style.