diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index 648ea60..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# .pre-commit-config.yaml - -# Repositories that contain hooks -# repos: -# # Black: Code formatter for Python -# - repo: https://github.com/psf/black -# rev: 23.3.0 -# hooks: -# - id: black -# args: ['--line-length=88'] # Customize the line length here if needed - -# # Flake8: Linter for Python -# - repo: https://github.com/PyCQA/flake8 -# rev: 6.0.0 -# hooks: -# - id: flake8 -# args: -# - --max-line-length=88 # Customize the max line length if needed - # additional_dependencies: - # - flake8-bugbear # Optional: Adds additional linting checks - # - flake8-docstrings # Optional: Adds docstring linting checks - - # Isort: Sorts imports alphabetically and automatically separates them into sections - # - repo: https://github.com/pre-commit/mirrors-isort - # rev: v5.12.0 # Use the latest valid version - # hooks: - # - id: isort - # args: ['--profile=black'] # Align with Black's formatting style - # additional_dependencies: - # - isort[app] # Optional: Install extra dependencies for app-specific sorting - - # Pydocstyle: Checks compliance with Python docstring conventions - # - repo: https://github.com/PyCQA/pydocstyle - # rev: 6.1.1 - # hooks: - # - id: pydocstyle - # args: - # - --convention=google # Use the Google style for docstrings (customize as needed) diff --git a/apps/stations/tests.py b/apps/stations/tests.py index a79ca8b..7ce503c 100644 --- a/apps/stations/tests.py +++ b/apps/stations/tests.py @@ -1,3 +1,3 @@ -# from django.test import TestCase +from django.test import TestCase # Create your tests here. diff --git a/apps/users/tests.py b/apps/users/tests.py index a79ca8b..7ce503c 100644 --- a/apps/users/tests.py +++ b/apps/users/tests.py @@ -1,3 +1,3 @@ -# from django.test import TestCase +from django.test import TestCase # Create your tests here.