forked from Ponysearch/Ponysearch
Merge pull request #2423 from return42/mod1-boilerplate
Speed up PyLint & revert obsolete CSS issue
This commit is contained in:
commit
5840499bfb
2 changed files with 1 additions and 30 deletions
29
docs/_themes/searx/static/searx.css
vendored
29
docs/_themes/searx/static/searx.css
vendored
|
@ -138,32 +138,3 @@ caption {
|
||||||
caption-side: top;
|
caption-side: top;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* bugs since sphinx 3.1
|
|
||||||
|
|
||||||
See sphinx-doc project, PR 7838 & 7484 with elementary patch to the basic CSS:
|
|
||||||
|
|
||||||
- https://github.com/sphinx-doc/sphinx/issues/7838#issuecomment-646009605
|
|
||||||
- https://github.com/sphinx-doc/sphinx/pull/7484#issuecomment-646058972
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
li > p:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
li > p:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.admonition dl {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.sidebar {
|
|
||||||
clear: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.admonition, div.topic, pre {
|
|
||||||
clear: none;
|
|
||||||
}
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ quiet_cmd_virtualenv = PYENV usage: $ source ./$@/bin/activate
|
||||||
|
|
||||||
# $2 path to lint
|
# $2 path to lint
|
||||||
quiet_cmd_pylint = LINT $@
|
quiet_cmd_pylint = LINT $@
|
||||||
cmd_pylint = $(PY_ENV_BIN)/python -m pylint --rcfile $(PYLINT_RC) $2
|
cmd_pylint = $(PY_ENV_BIN)/python -m pylint -j 0 --rcfile $(PYLINT_RC) $2
|
||||||
|
|
||||||
quiet_cmd_pytest = TEST $@
|
quiet_cmd_pytest = TEST $@
|
||||||
cmd_pytest = $(PY_ENV_BIN)/python -m tox -vv
|
cmd_pytest = $(PY_ENV_BIN)/python -m tox -vv
|
||||||
|
|
Loading…
Reference in a new issue