| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,6 +11,7 @@ | |||
| 11 | 11 | ||
| 12 | 12 | ### Changed | |
| 13 | 13 | ||
| 14 | + * Moved from prospector to ruff [#336](https://github.com/NLeSC/python-template/issues/336) | ||
| 14 | 15 | * Renamed `project_name` to `directory_name` in cookiecutter questionnaire | |
| 15 | 16 | * Initial linting is error free [#227](https://github.com/NLeSC/python-template/issues/227) | |
| 16 | 17 | * Consolidated test/lint/build/docs into single matrix workflow [#270](https://github.com/NLeSC/python-template/issues/276) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -131,7 +131,6 @@ my-python-project/ | |||
| 131 | 131 | ├── next_steps.md | |
| 132 | 132 | ├── NOTICE | |
| 133 | 133 | ├── project_setup.md | |
| 134 | - ├── .prospector.yml | ||
| 135 | 134 | ├── .pylintrc | |
| 136 | 135 | ├── pyproject.toml | |
| 137 | 136 | ├── README.dev.md | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -59,4 +59,4 @@ jobs: | |||
| 59 | 59 | python -m pip install --upgrade pip setuptools | |
| 60 | 60 | python -m pip install .[dev,publishing] | |
| 61 | 61 | - name: Check style against standards using ruff | |
| 62 | - run: ruff | ||
| 62 | + run: ruff . | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -91,6 +91,6 @@ target-version = "py39" | |||
| 91 | 91 | line-length = 120 | |
| 92 | 92 | ||
| 93 | 93 | [tool.ruff.isort] | |
| 94 | - known-first-party = ["distance_explainer"] | ||
| 94 | + known-first-party = ["{{ cookiecutter.package_name }}"] | ||
| 95 | 95 | force-single-line = true | |
| 96 | 96 | no-lines-before = ["future","standard-library","third-party","first-party","local-folder"] | |
| Back | FazBrowse Home | New Git URL |
0 commit comments