mirror of https://github.com/thesofproject/sof.git
xtensa-build-zephyr.py: add #pylint:disable=W0312,C0103,C0116
This reduces the number of warnings from about 600 to a more manageable 350. Disable W0312 because the entire file uses tabs. Disable C0103 because we have higher priority than naming conventions. Disable C0116 because the script is small enough, shouldn't require pydoc everywhere. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
parent
9cf8e0c777
commit
35e588080d
|
@ -1,6 +1,9 @@
|
|||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#pylint:disable=mixed-indentation
|
||||
#pylint:disable=invalid-name
|
||||
#pylint:disable=missing-function-docstring
|
||||
import argparse
|
||||
import shlex
|
||||
import subprocess
|
||||
|
|
Loading…
Reference in New Issue