Skip to content

Commit 4462228

Browse files
authored
Merge pull request GreedyBear-Project#1232 from GreedyBear-Project/develop
3.3.2
2 parents 971c43d + ec05bee commit 4462228

47 files changed

Lines changed: 5655 additions & 9062 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/.pre-commit-config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ repos:
55
hooks:
66
- id: ruff
77
name: ruff-lint
8-
args: ["--fix", "--config", "./.github/configurations/python_linters/.ruff.toml"]
8+
args: ["--fix"]
99
- id: ruff-format
10-
args: ["--config", "./.github/configurations/python_linters/.ruff.toml"]
1110

1211
# Frontend formatting with Prettier (using local npm)
1312
# Skips if frontend/node_modules doesn't exist (for backend-only contributors)

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
GreedyBear is handled by the same maintainers of [IntelOwl](https://github.com/intelowlproject/IntelOwl/).
22

3-
So, please refer to the [IntelOwl Contribute guide](https://intelowlproject.github.io/docs/GreedyBear/Contribute/)
3+
So, please refer to the [Contribute guide](https://github.com/GreedyBear-Project/GreedyBear/wiki/Contribute)

.github/actions/python_linter/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ runs:
9898
- name: ruff formatter
9999
run: |
100100
if [[ ${{ inputs.use_ruff_formatter }} != 'false' ]]; then
101-
ruff format --config ${GITHUB_WORKSPACE}/.github/configurations/python_linters/.ruff.toml --diff .
101+
ruff format --diff .
102102
else
103103
echo "Skipping ruff formatter"
104104
fi
@@ -108,7 +108,7 @@ runs:
108108
- name: ruff linter
109109
run: |
110110
if [[ ${{ inputs.use_ruff_linter }} != 'false' ]]; then
111-
ruff check --config ${GITHUB_WORKSPACE}/.github/configurations/python_linters/.ruff.toml .
111+
ruff check .
112112
else
113113
echo "Skipping ruff linter"
114114
fi

0 commit comments

Comments
 (0)