Files
openlane2/.flake8
Mohamed Gaber 7582da73cc nix: composable overlays (#578)
## Tool Updates

* Updated nix-eda to `0814aa6`: more orthodox approach to managing
dependencies by overlaying them on top of nixpkgs, which fixes an
occasional "repeated allocation" issue and helps make override behavior
more consistent.
  * Yosys and first-party plugins updated to 0.46 
* OpenLane itself no longer included in `devShells.*.dev`,
`devShells.*.docs`
* These shells are intended to be actual dev shells, i.e. used to
develop OpenLane, and needing OpenLane to pass tests to run these shells
makes no sense.
2024-10-15 13:58:48 +03:00

26 lines
283 B
INI

[flake8]
extend-ignore =
E1
W1
E2
W2
E3
W3
E5
W5
E731
E721
PT001
exclude =
.git,
__pycache__,
build/,
pdk/,
venv/,
test/designs/*.py,
examples,
sandbox/,
test/,
per-file-ignores =
*/__init__.py:F401