Skip to content

Commit f39437b

Browse files
committed
Fix python linting and update yapf line length
1 parent a17e053 commit f39437b

File tree

3 files changed

+6
-26
lines changed

3 files changed

+6
-26
lines changed

.flake8

+1-21
Original file line numberDiff line numberDiff line change
@@ -138,24 +138,4 @@ statistics = True
138138

139139
exclude =
140140
.git,
141-
__pycache__,
142-
# submodules
143-
components/esptool_py/esptool,
144-
components/bootloader/subproject/components/micro-ecc/micro-ecc,
145-
components/nghttp/nghttp2,
146-
components/libsodium/libsodium,
147-
components/json/cJSON,
148-
components/mbedtls/mbedtls,
149-
components/expat/expat,
150-
components/unity/unity,
151-
examples/build_system/cmake/import_lib/main/lib/tinyxml2
152-
# other third-party libraries
153-
tools/kconfig_new/kconfiglib.py,
154-
# autogenerated scripts
155-
components/protocomm/python/constants_pb2.py,
156-
components/protocomm/python/sec0_pb2.py,
157-
components/protocomm/python/sec1_pb2.py,
158-
components/protocomm/python/session_pb2.py,
159-
components/wifi_provisioning/python/wifi_config_pb2.py,
160-
components/wifi_provisioning/python/wifi_constants_pb2.py,
161-
examples/provisioning/custom_config/components/custom_provisioning/python/custom_config_pb2.py,
141+
__pycache__

.style.yapf

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ blank_line_before_nested_class_or_def=False
8080
coalesce_brackets=False
8181

8282
# The column limit.
83-
column_limit=140
83+
column_limit=120
8484

8585
# The style for continuation alignment. Possible values are:
8686
#

ci/copyright_header_checker.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
# Project: ESP-IDF VSCode Extension
66
# File Created: Tuesday, 4th June 2019 11:00:17 pm
77
# Copyright 2019 Espressif Systems (Shanghai) CO LTD
8-
#
8+
#
99
# Licensed under the Apache License, Version 2.0 (the "License");
1010
# you may not use this file except in compliance with the License.
1111
# You may obtain a copy of the License at
12-
#
12+
#
1313
# http://www.apache.org/licenses/LICENSE-2.0
14-
#
14+
#
1515
# Unless required by applicable law or agreed to in writing, software
1616
# distributed under the License is distributed on an "AS IS" BASIS,
1717
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -27,7 +27,7 @@
2727
DEFAULT_EXTENSIONS = ["js", "ts", "py"]
2828

2929
COPYRIGHT_REGEX = re.compile(r"Copyright [0-9]{4} Espressif Systems \(Shanghai\) CO\.? LTD\.?",
30-
flags=(re.MULTILINE | re.IGNORECASE))
30+
flags=re.MULTILINE | re.IGNORECASE)
3131

3232

3333
def contain_copyright_message(file_path):

0 commit comments

Comments
 (0)