# line-length-limits > Keep lines under 80-120 characters depending on team standards Use when maintaining consistent code style. Style category skill. - Author: OmniaffixDave - Repository: OmniaffixDave/SessionGuardian - Version: 20260205125233 - Stars: 0 - Forks: 1 - Last Updated: 2026-02-08 - Source: https://github.com/OmniaffixDave/SessionGuardian - Web: https://mule.run/skillshub/@@OmniaffixDave/SessionGuardian~line-length-limits:20260205125233 --- --- name: line-length-limits description: Keep lines under 80-120 characters depending on team standards Use when maintaining consistent code style. Style category skill. metadata: category: Style priority: medium is-built-in: true session-guardian-id: builtin_line_length_limits --- # Line Length Limits Keep lines under 80-120 characters depending on team standards. Long lines are hard to read, especially in split-pane editors or during code review. Break long function calls across multiple lines. Extract long conditions into well-named variables. Configure your formatter to enforce line length. Exceptions can be made for URLs or generated code.