Skip to main content

Write your own linting rules using regular expressions.

Project description

/(re)lint/

reLint

Regular Expression Linter

Write your own linting rules using regular expressions.

PyPi Version Test Coverage GitHub License

Installation

python3 -m pip install relint
# or, if you have super advanced linting expressions
python3 -m pip install "relint[regex]"

Examples & Recipes – The reLint Cookbook

Usage

You can write your own regular rules in a YAML file, like so:

- name: No ToDo
  pattern: '(?i)todo' # case insensitive flag
  hint: Get it done right away!
  filePattern: .*\.(py|js)
  error: false

The name attribute is the name of your linter, the pattern can be any regular expression. The linter does lint entire files, therefore your expressions can match multiple lines and include newlines.

You can narrow down the file types your linter should be working with, by providing the optional filePattern attribute. The default is .*.

The optional error attribute allows you to only show a warning but not exit with a bad (non-zero) exit code. The default is true.

The following command will lint all files in the current directory:

relint -c .relint.yml FILE FILE2 ...

The default configuration file name is .relint.yml within your working directory, but you can provide any YAML or JSON file.

If you prefer linting changed files (cached on git) you can use the option --diff [-d] or --git-diff [-g]:

git diff --unified=0 | relint my_file.py --diff

pre-commit

You can automate the linting process by adding a pre-commit hook to your project. Add the following entry to your .pre-commit-config.yaml:

- repo: https://github.com/codingjoe/relint
  rev: 1.4.0
  hooks:
    - id: relint
      args: [-W]  # optional, if you want to fail on warnings during commit

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

relint-3.3.0.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

relint-3.3.0-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file relint-3.3.0.tar.gz.

File metadata

  • Download URL: relint-3.3.0.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for relint-3.3.0.tar.gz
Algorithm Hash digest
SHA256 fd021cefc0ed9e294ca5ba37478de8944d3ad3bf6f35eec9c0585df4afdfa0ff
MD5 13889bffdf9ffa2963ee6ebe630c8930
BLAKE2b-256 c505bbaeaf43faa4bc89547161dcfcfb13549a7b20c243501f4a84275df56d2b

See more details on using hashes here.

File details

Details for the file relint-3.3.0-py3-none-any.whl.

File metadata

  • Download URL: relint-3.3.0-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for relint-3.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f57863cd7911a7d0a19ce27c2f5ab65f258b5834ecbb1e8b07be4054da4acb50
MD5 ba0ffc05171cd42a2f692c82031d5d06
BLAKE2b-256 ab125b739cea8f211d80fb537eb12341414291ad1dec8e72939bc437463e5b44

See more details on using hashes here.

Supported by

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