Project-Stage-Academy / UA1244_beta

1 stars 0 forks source link

Install and Configure Pylint for Project #69

Closed AnnKvytko closed 2 weeks ago

AnnKvytko commented 2 weeks ago

This pull request implements pylint as a static code analysis tool for our project to enhance code quality. The following changes have been made:

Installed Pylint and Pylint-Django: Added pylint (version 3.3.1) and pylint-django (version 2.5.5) to the project. Configured Pylint: Created the .pylintrc file to customize pylint settings, including loading the pylint_django plugin for better Django support and modifying the [TYPECHECK] section to ignore specific Django modules and classes. Updated the requirements.txt file to include the new dependencies. Added to README file documentation on how to use Pylint within the project's development workflow. Command to run pylint: pylint --load-plugins pylint_django [your_django_app_folder]