Skip to main content

An uncompromising Fortran formatter, inspired by Black

Project description

Sable logo
Code style: Sable PyPI version Python 3.10 through 3.15-dev License: MIT

An uncompromising Fortran formatter, inspired by Black.

"So it goes." — Kurt Vonnegut, Slaughterhouse-Five

Sable enforces one consistent style for modern free-form Fortran, so you can focus on code instead of formatting. It also supports code checks beyond formatting to identify code issues.

Installation

pip install sable-fortran

Quick Start

# Format in place (default command)
sable src/

# Equivalent explicit form
sable format src/

# Check formatting only (no writes)
sable format --check src/

# Preview formatting diff
sable format --diff src/

# Safer migration pass (layout-focused)
sable format --safe src/

Recommended CI formatting gate:

sable format --check src/

Formatting

format rewrites source into Sable's canonical style. This includes:

  • Relational operator normalization (.EQ. -> ==, etc.)
  • END keyword normalization (endif -> end if, configurable)
  • Declaration normalization (integer x -> integer :: x)
  • Deterministic spacing, indentation, wrapping, and trailing newline handling

Example:

! Before
IF(A .EQ. B)THEN
CALL compute(argument_alpha,argument_beta,argument_gamma)
ENDIF

! After
if (A == B) then

   call compute(argument_alpha, &
                argument_beta, &
                argument_gamma)

end if

Checking

check reports rule diagnostics and can apply rule fixes.

# Run all rules (style + lint)
sable check src/

# Focus on policy/lint only
sable check --rule-set lint src/

# Formatter-adjacent style rules only
sable check --rule-set style src/

# Apply safe fixes, then re-check
sable check --fix src/

# Allow unsafe fixes too
sable check --fix --unsafe-fixes src/

Rule-set notes:

  • --rule-set all (default): style + lint
  • --select takes precedence over --rule-set
  • --fix applies safe fixes
  • --unsafe-fixes enables unsafe fixes (only with --fix)

Current lint rules:

  • SBL101: Program/module is missing implicit none
  • SBL102: Procedure is missing implicit none
  • SBL103: Dummy argument is missing intent(in|out|inout)

Suppressions

Inline:

if (a .eq. b) then ! sable: ignore SBL001
end if

File-wide:

! sable: ignore-file SBL001,SBL004

Configuration

Formatter options are CLI flags:

sable format --line-length 88 src/
Option Default Values Applies to
--line-length 100 integer format, check
--indent-width 3 integer format, check
--keyword-case lower lower, upper format, check
--end-keyword-form spaced spaced, compact format, check
--no-normalize-operators off flag format, check
rule_set / --rule-set all style, lint, all check
select / --select [] rule codes check
ignore / --ignore [] rule codes check
output_format / --output-format text text, json, sarif, gitlab-codequality check
baseline / --baseline unset path check
fix / --fix false boolean check
unsafe_fixes / --unsafe-fixes false boolean check
generate_baseline / --generate-baseline false boolean check

Example pyproject.toml:

[tool.sable.check]
rule_set = "all"  # style | lint | all
select = []
ignore = []
output_format = "text"   # text | json | sarif | gitlab-codequality
baseline = ".sable-baseline.json"
fix = false
unsafe_fixes = false
generate_baseline = false

For check, CLI flags override pyproject.toml defaults.

Badge

[![Code style: Sable](https://raw.githubusercontent.com/eirik-kjonstad/sable/main/assets/sable-badge.svg)](https://github.com/eirik-kjonstad/sable)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sable_fortran-0.3.11.tar.gz (75.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sable_fortran-0.3.11-py3-none-any.whl (58.4 kB view details)

Uploaded Python 3

File details

Details for the file sable_fortran-0.3.11.tar.gz.

File metadata

  • Download URL: sable_fortran-0.3.11.tar.gz
  • Upload date:
  • Size: 75.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sable_fortran-0.3.11.tar.gz
Algorithm Hash digest
SHA256 cf5e9343af1f222bc9e34cbe5a6c88e6f382e72ee6a417bf18b36a9a0abe109d
MD5 150c283397d269293c40b3d65be7ca61
BLAKE2b-256 ad2fcce75b6cfc9baf9176c3c3b9bd30ec5dee98e6ca659d36b444cbc988cc07

See more details on using hashes here.

Provenance

The following attestation bundles were made for sable_fortran-0.3.11.tar.gz:

Publisher: publish.yml on eirik-kjonstad/sable

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sable_fortran-0.3.11-py3-none-any.whl.

File metadata

  • Download URL: sable_fortran-0.3.11-py3-none-any.whl
  • Upload date:
  • Size: 58.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sable_fortran-0.3.11-py3-none-any.whl
Algorithm Hash digest
SHA256 5906c8286608ba582db98ac1bc8bdf4785af568d1348d4d589441c2d9bdf2dfc
MD5 e3699ada13483b884aaf769b99a20269
BLAKE2b-256 e3a856f671c007354c732ce74f10a794c050dce2b0cedc890bfe4e71a5aff0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sable_fortran-0.3.11-py3-none-any.whl:

Publisher: publish.yml on eirik-kjonstad/sable

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page