Skip to content

Commit ccac5db

Browse files
committed
개발용 라이브러리 변경 및 설정 파일 수정
1 parent a5cece2 commit ccac5db

File tree

5 files changed

+267
-325
lines changed

5 files changed

+267
-325
lines changed

.pre-commit-config.yaml

+10-14
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,17 @@ repos:
55
- id: check-yaml
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
8-
- repo: https://github.com/hadialqattan/pycln
9-
rev: v2.1.3 # Possible releases: https://github.com/hadialqattan/pycln/releases
10-
hooks:
11-
- id: pycln
12-
args: [--config=pyproject.toml]
13-
- repo: https://github.com/pycqa/isort
14-
rev: 5.11.5
15-
hooks:
16-
- id: isort
17-
- repo: https://github.com/asottile/pyupgrade
18-
rev: v3.4.0
19-
hooks:
20-
- id: pyupgrade
218
- repo: https://github.com/psf/black
22-
rev: 23.3.0
9+
rev: 24.4.2
2310
hooks:
2411
- id: black
2512
language_version: python3.11
13+
- repo: https://github.com/astral-sh/ruff-pre-commit
14+
# Ruff version.
15+
rev: v0.4.9
16+
hooks:
17+
# Run the linter.
18+
- id: ruff
19+
args: [--fix]
20+
# Run the formatter.
21+
- id: ruff-format

.vscode/settings.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3-
"python.formatting.blackPath": "${workspaceFolder}/.venv/bin/black",
4-
"isort.args": ["--profile", "black", "--src", "${workspaceFolder}"],
3+
"python.linting.enabled": true,
4+
55
"[python]": {
66
"editor.formatOnSave": true,
77
"editor.insertSpaces": true,
88
"editor.tabSize": 4,
99
"editor.codeActionsOnSave": {
10-
"python.sortImports": true,
11-
"source.organizeImports": true
10+
"python.sortImports": "explicit",
11+
"source.organizeImports": "explicit",
12+
"source.fixAll": "always"
1213
}
1314
},
1415
"python.testing.pytestArgs": ["solutions"],

0 commit comments

Comments
 (0)