File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -45,3 +45,40 @@ This repository contains a set of configurations for linters and formatters that
4545 - String normalization disabled
4646 - Target Python version: py313
4747 - Excluded directory: ` .venv `
48+
49+ - ** .gitignore**
50+ A comprehensive .gitignore file для Python.
51+
52+ ## Installation
53+
54+ ### Step 1: Clone the Repository
55+
56+ Clone the project repository using Git:
57+
58+ ``` bash
59+ git clone https://github.com/RandomProgramm3r/Python-Linters-Configuration
60+ ```
61+
62+ ### Step 2: Create and activate a virtual environment
63+
64+ Create a virtual environment using the ` venv ` command, which allows you to isolate project dependencies:
65+
66+ ``` bash
67+ python3 -m venv venv # Linux/MacOS
68+ python -m venv venv # Windows
69+ ```
70+
71+ Activate the virtual environment:
72+
73+ ``` bash
74+ source venv/bin/activate # Linux/MacOS
75+ source venv/Scripts/activate # Windows
76+ ```
77+
78+ ### Step 3: Installing Dependencies
79+
80+ Install the dependencies (they include all ** flake8** dependencies)
81+
82+ ``` bash
83+ pip install -r requirements/linters.txt
84+ ```
You can’t perform that action at this time.
0 commit comments