Update code quality for vscode
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"charliermarsh.ruff",
|
||||
"ms-python.python"
|
||||
]
|
||||
}
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"name": "Python Debugger: pytest",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"module": "pytest",
|
||||
"args": [
|
||||
"${workspaceFolder}/tests",
|
||||
"-v",
|
||||
// "-k test_filter_by_property_type_partial_match"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
]
|
||||
}
|
||||
Vendored
+41
@@ -0,0 +1,41 @@
|
||||
{
|
||||
// Ruff integration for automatic code quality
|
||||
"[python]": {
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll": "explicit",
|
||||
"source.organizeImports": "explicit"
|
||||
},
|
||||
"editor.defaultFormatter": "charliermarsh.ruff"
|
||||
},
|
||||
|
||||
// Ruff configuration
|
||||
"ruff.enable": true,
|
||||
"ruff.organizeImports": true,
|
||||
"ruff.fixAll": true,
|
||||
|
||||
// Show lint errors inline
|
||||
"python.linting.enabled": true,
|
||||
"python.linting.ruffEnabled": true,
|
||||
|
||||
// Test configuration
|
||||
"python.testing.pytestEnabled": true,
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestArgs": [
|
||||
"tests",
|
||||
"-m",
|
||||
"not api_health"
|
||||
],
|
||||
|
||||
// Exclude common directories
|
||||
"files.exclude": {
|
||||
"**/__pycache__": true,
|
||||
"**/*.pyc": true,
|
||||
"**/.pytest_cache": true,
|
||||
"**/.ruff_cache": true
|
||||
},
|
||||
|
||||
// Auto-save
|
||||
"files.autoSave": "afterDelay",
|
||||
"files.autoSaveDelay": 1000
|
||||
}
|
||||
Executable
+30
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
# Quick code quality check script
|
||||
# Run this before committing to catch issues early
|
||||
|
||||
set -e
|
||||
|
||||
echo "🔍 Running code quality checks..."
|
||||
echo ""
|
||||
|
||||
# Activate virtualenv if it exists
|
||||
if [ -d "venv" ]; then
|
||||
source venv/bin/activate
|
||||
fi
|
||||
|
||||
echo "1️⃣ Checking code formatting with Ruff..."
|
||||
ruff format --check .
|
||||
echo "✅ Formatting check passed"
|
||||
echo ""
|
||||
|
||||
echo "2️⃣ Running Ruff linter..."
|
||||
ruff check .
|
||||
echo "✅ Linting passed"
|
||||
echo ""
|
||||
|
||||
echo "3️⃣ Running tests..."
|
||||
pytest tests/ -m "not api_health" -q
|
||||
echo "✅ Tests passed"
|
||||
echo ""
|
||||
|
||||
echo "🎉 All checks passed! Ready to commit."
|
||||
Reference in New Issue
Block a user