Skip to content

Commit

Permalink
feat(build): fluidattacks#1082 add ruff dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Cardona <sebas03181@gmail.com>
  • Loading branch information
sebas031811 committed Jun 22, 2023
1 parent 3004ae7 commit ceebc26
Show file tree
Hide file tree
Showing 7 changed files with 755 additions and 570 deletions.
1 change: 1 addition & 0 deletions src/args/lint-python/pypi-deps.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
mypy: "*"
prospector: "*"
pylint: "*"
ruff: "*"
335 changes: 187 additions & 148 deletions src/args/lint-python/pypi-sources-3.10.yaml

Large diffs are not rendered by default.

311 changes: 187 additions & 124 deletions src/args/lint-python/pypi-sources-3.11.yaml

Large diffs are not rendered by default.

335 changes: 187 additions & 148 deletions src/args/lint-python/pypi-sources-3.8.yaml

Large diffs are not rendered by default.

335 changes: 187 additions & 148 deletions src/args/lint-python/pypi-sources-3.9.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/cli/main/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def _get_config(head: str, attr_paths: str) -> Config:
head=head,
out=out,
),
env=None if NIX_STABLE else dict(HOME=environ["HOME_IMPURE"]),
env=None if NIX_STABLE else {"HOME": environ["HOME_IMPURE"]},
stderr=None,
stdout=sys.stderr.fileno(),
)
Expand Down Expand Up @@ -642,7 +642,7 @@ def _cli_build( # pylint: disable=too-many-arguments
head=head,
out=out,
),
env=None if NIX_STABLE else dict(HOME=environ["HOME_IMPURE"]),
env=None if NIX_STABLE else {"HOME": environ["HOME_IMPURE"]},
stderr=None,
stdout=None,
)
Expand Down
4 changes: 4 additions & 0 deletions src/evaluator/modules/lint-python/settings-prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@ pep8:
disable:
- E203
- W503

ruff:
run: true

test-warnings: true

0 comments on commit ceebc26

Please sign in to comment.