File must have at most max_lines lines, using the same accounting as file_min_lines. Catches the everything-module anti-pattern — a lib.rs / index.ts / helpers.py that grew unbounded.
Options
Section titled “Options”| Option | Type | Required | Default | Description |
|---|---|---|---|---|
max_lines | integer (>= 0) | yes | Maximum allowed line count. |
Plus the common paths, level, id, and when fields. This table is generated from the JSON Schema; option types and defaults are authoritative.
Example
Section titled “Example”A source file over the line cap
Section titled “A source file over the line cap”The rule fires on this repository:
src/src/bloated.rssrc/tiny.rsfn a() {}fn b() {}fn c() {}fn d() {}fn e() {}fn f() {}fn g() {}fn a() {}With this .alint.yml:
version: 1rules: - id: cap-source-file kind: file_max_lines paths: "src/**/*.rs" max_lines: 5 level: warningalint check reports:
--- src/bloated.rs ------------------------------------------------------------- ! warning cap-source-file file has 7 line(s); at most 5 allowed
Summary (1 violation): ! 1 warning 0 passing * 1 failingA source file within the line cap
Section titled “A source file within the line cap”This repository is compliant:
src/src/medium.rssrc/tiny.rsfn a() {}fn b() {}fn c() {}fn d() {}fn e() {}fn a() {}With this .alint.yml:
version: 1rules: - id: cap-source-file kind: file_max_lines paths: "src/**/*.rs" max_lines: 5 level: warningalint check reports:
v All 1 rule(s) passed.