LinterProject is a Python code analysis tool that utilizes Flake8 and Pylint to identify suspicious code patterns. The tool provides a comprehensive report of potential vulnerabilities and code quality issues, aiding developers in maintaining high code standards.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Make sure you have Python 3.x installed on your system. You can download it from python.org.
-
Clone the Repository
git clone https://github.com/VIZIIER/LinterProject.git cd LinterProject -
Set Up a Virtual Environment
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install Dependencies
pip install -r requirements.txt
To run the linter analysis, navigate to the scripts directory and execute the run_linters.py script:
python scripts/run_linters.py