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:
Marc Herbert 2022-04-07 22:40:04 +00:00 committed by Liam Girdwood
parent 9cf8e0c777
commit 35e588080d
1 changed files with 3 additions and 0 deletions

View File

@ -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