docs: disable problematic sphinx conf.py linting
This commit is contained in:
parent
94277e3476
commit
cd4c44069f
1 changed files with 8 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
"""
|
||||||
|
Configuration file for the Sphinx documentation builder.
|
||||||
|
|
||||||
|
For the full list of built-in configuration values, see the documentation:
|
||||||
|
https://www.sphinx-doc.org/en/master/usage/configuration.html
|
||||||
|
"""
|
||||||
|
# 'fix' linting; sphinx doesn't apply
|
||||||
|
# pylint: disable=invalid-name,redefined-builtin
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -9,11 +17,6 @@ import sys
|
||||||
#
|
#
|
||||||
sys.path.insert(0, os.path.abspath(os.path.join("..", "..", "src")))
|
sys.path.insert(0, os.path.abspath(os.path.join("..", "..", "src")))
|
||||||
|
|
||||||
# Configuration file for the Sphinx documentation builder.
|
|
||||||
#
|
|
||||||
# For the full list of built-in configuration values, see the documentation:
|
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||||
|
|
||||||
|
|
Reference in a new issue