blob: 1910c57d958858af97499241d4c11edfab5a8642 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#Flake8 migrations
##migrations.yaml
Format:
```
migrations:
plugin-1:
ignore:
- B102
- S103
- F401
prefixes:
- devtools/ya
- ads
- quality
ignore-F123:
ignore:
- F123
prefixes:
- devtools/ya
- devtools/d
```
If arcadia-relative filepath startswith prefix from prefixes, then:
1. ignore values will be added to flake8.conf ignore section
|