File: Makefile

package info (click to toggle)
python-limits 4.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,064 kB
  • sloc: python: 7,833; makefile: 162; sh: 59
file content (11 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
lint:
	ruff check --select I limits tests
	ruff check limits tests
	ruff format --check limits tests
	mypy limits

lint-fix:
	ruff check --select I --fix limits tests
	ruff check --fix limits tests
	ruff format limits tests
	mypy limits