Change-Id: I7e23f8be866f79d4e410b6e8628d33c6377b8b33
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
--- /dev/null
+[all]
+ignore = .tox/**,
+ .git/**,
+ .gitignore,
+ .gitreview,
+ .gitmodules,
+ node_modules/**
+
+[all.Git]
+bears = GitCommitBear
+ignore_length_regex = Signed-off-by,
+ Also-by,
+ Co-authored-by,
+ http://,
+ https://
+
+[all.Python]
+bears = BanditBear,
+ PEP8Bear,
+ PyCommentedCodeBear,
+ PyDocStyleBear,
+ PyFlakesBear,
+ PyImportSortBear
+files = conf.py
+known_first_party_imports = lftools
+known_third_party_imports = pytest, six
+pydocstyle_ignore = D203, D213, D301
+max_line_length = 120
+
--- /dev/null
+# Ignore Vim temporary files
+.*.sw?
+
+# Python
+.tox/
+docs/_build/
+MANIFEST
--- /dev/null
+[gerrit]
+host=gerrit.linuxfoundation.org
+port=29418
+project=releng/docs-conf.git
+defaultbranch=master
--- /dev/null
+[tox]
+minversion = 1.6
+envlist =
+ coala,
+ docs,
+ docs-linkcheck
+skipsdist=true
+
+[testenv:coala]
+basepython = python3
+deps =
+ coala
+ coala-bears
+ nodeenv==1.1.2
+commands =
+ nodeenv -p
+ coala --non-interactive
+