mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 17:05:07 +03:00
25 lines
502 B
YAML
25 lines
502 B
YAML
|
distributable:
|
||
|
url: https://github.com/charliermarsh/ruff/archive/refs/tags/v{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: charliermarsh/ruff
|
||
|
strip: /^v /
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
rust-lang.org: '>=1.60'
|
||
|
rust-lang.org/cargo: '*'
|
||
|
script: cargo install --locked --path ruff_cli --root {{prefix}}
|
||
|
|
||
|
provides:
|
||
|
- bin/ruff
|
||
|
|
||
|
test:
|
||
|
script: |
|
||
|
ruff -e $FIXTURE | grep "F401 \`os\` imported but unused"
|
||
|
ruff --fix $FIXTURE
|
||
|
test ! -s $FIXTURE
|
||
|
fixture: |
|
||
|
import os
|