-
Notifications
You must be signed in to change notification settings - Fork 5
/
.flake8
26 lines (24 loc) · 859 Bytes
/
.flake8
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
# SPDX-License-Identifier: Apache-2.0 OR MIT
#
# SPDX-FileCopyrightText: Copyright 2022 Micron Technology, Inc.
[flake8]
extend-ignore =
# Formatting is done by Black
E301,
# Formatting is done by Black
E302,
# Remove when oldest platform we support supports >= Python 3.11 by default
F821,
# We need docstrings in stubs to support language servers on hover
Y021,
# Remove when oldest platform we support supports >= Python 3.9 by default
Y022,
# Remove when oldest platform we support supports >= Python 3.10 by default
Y034,
# Remove when oldest platform we support supports >= Python 3.10 by default
Y036,
# Remove when oldest platform we support supports >= Python 3.10 by default
Y037,
# We need docstrings in stubs to support language servers on hover
Y048
max-line-length = 100