mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
f9328d2021
This for a few reasons: * The summary becomes the landing page for code quality: https://firefox-source-docs.mozilla.org/tools/static-analysis/summary.html * I don't think we need a full code quality category * Closer to the source-code-doc * All the files at the same place Differential Revision: https://phabricator.services.mozilla.com/D61767 --HG-- rename : tools/lint/docs/coding-style/coding_style_java.rst => docs/code-quality/coding-style/coding_style_java.rst rename : tools/lint/docs/coding-style/coding_style_other.rst => docs/code-quality/coding-style/coding_style_other.rst rename : tools/lint/docs/coding-style/coding_style_python.rst => docs/code-quality/coding-style/coding_style_python.rst rename : tools/lint/docs/coding-style/format_cpp_code_with_clang-format.rst => docs/code-quality/coding-style/format_cpp_code_with_clang-format.rst rename : tools/clang-tidy/docs/summary.rst => docs/code-quality/index.rst rename : tools/lint/docs/create.rst => docs/code-quality/lint/create.rst rename : tools/lint/docs/index.rst => docs/code-quality/lint/index.rst rename : tools/lint/docs/index.rst => docs/code-quality/lint/lint.rst rename : tools/lint/docs/linters/codespell.rst => docs/code-quality/lint/linters/codespell.rst rename : tools/lint/docs/linters/cpp-virtual-final.rst => docs/code-quality/lint/linters/cpp-virtual-final.rst rename : tools/lint/docs/linters/eslint-plugin-mozilla.rst => docs/code-quality/lint/linters/eslint-plugin-mozilla.rst rename : tools/lint/docs/linters/eslint-plugin-spidermonkey-js.rst => docs/code-quality/lint/linters/eslint-plugin-spidermonkey-js.rst rename : tools/lint/docs/linters/eslint.rst => docs/code-quality/lint/linters/eslint.rst rename : tools/lint/docs/linters/file-perm.rst => docs/code-quality/lint/linters/file-perm.rst rename : tools/lint/docs/linters/file-whitespace.rst => docs/code-quality/lint/linters/file-whitespace.rst rename : tools/lint/docs/linters/flake8.rst => docs/code-quality/lint/linters/flake8.rst rename : tools/lint/docs/linters/l10n.rst => docs/code-quality/lint/linters/l10n.rst rename : tools/lint/docs/linters/license.rst => docs/code-quality/lint/linters/license.rst rename : tools/lint/docs/linters/lintpref.rst => docs/code-quality/lint/linters/lintpref.rst rename : tools/lint/docs/linters/mingw-capitalization.rst => docs/code-quality/lint/linters/mingw-capitalization.rst rename : tools/lint/docs/linters/perfdocs.rst => docs/code-quality/lint/linters/perfdocs.rst rename : tools/lint/docs/linters/rstlinter.rst => docs/code-quality/lint/linters/rstlinter.rst rename : tools/lint/docs/linters/rustfmt.rst => docs/code-quality/lint/linters/rustfmt.rst rename : tools/lint/docs/usage.rst => docs/code-quality/lint/usage.rst rename : tools/clang-tidy/docs/index.rst => docs/code-quality/static-analysis.rst extra : moz-landing-system : lando
77 lines
2.1 KiB
Python
77 lines
2.1 KiB
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Core", "General")
|
|
|
|
with Files("code-coverage/**"):
|
|
BUG_COMPONENT = ("Testing", "Code Coverage")
|
|
|
|
with Files("compare-locales/mach_commands.py"):
|
|
BUG_COMPONENT = ("Localization Infrastructure and Tools", "compare-locales")
|
|
|
|
with Files("coverity/**"):
|
|
BUG_COMPONENT = ("Firefox Build System", "Source Code Analysis")
|
|
|
|
with Files("github-sync/**"):
|
|
BUG_COMPONENT = ("Core", "Graphics")
|
|
|
|
with Files("lint/**"):
|
|
BUG_COMPONENT = ("Firefox Build System", "Lint and Formatting")
|
|
|
|
with Files("moztreedocs/**"):
|
|
BUG_COMPONENT = ("Firefox Build System", "Generated Documentation")
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
with Files("profiler/**"):
|
|
BUG_COMPONENT = ("Core", "Gecko Profiler")
|
|
|
|
with Files("performance/**"):
|
|
BUG_COMPONENT = ("Core", "Gecko Profiler")
|
|
|
|
with Files("quitter/**"):
|
|
BUG_COMPONENT = ("Testing", "General")
|
|
|
|
with Files("rb/**"):
|
|
BUG_COMPONENT = ("Core", "XPCOM")
|
|
|
|
with Files("rewriting/**"):
|
|
BUG_COMPONENT = ("Firefox Build System", "Source Code Analysis")
|
|
|
|
with Files("tryselect/**"):
|
|
BUG_COMPONENT = ("Firefox Build System", "Try")
|
|
|
|
with Files("tryselect/selectors/release.py"):
|
|
BUG_COMPONENT = ("Release Engineering", "General")
|
|
|
|
with Files("update-packaging/**"):
|
|
BUG_COMPONENT = ("Release Engineering", "General")
|
|
|
|
with Files("update-verify/**"):
|
|
BUG_COMPONENT = ("Release Engineering", "Release Automation: Updates")
|
|
|
|
SPHINX_TREES['moztreedocs'] = 'moztreedocs/docs'
|
|
|
|
with Files('lint/docs/**'):
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
SPHINX_TREES['try'] = 'tryselect/docs'
|
|
|
|
SPHINX_TREES['fuzzing'] = 'fuzzing/docs'
|
|
|
|
with Files('tryselect/docs/**'):
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
CRAMTEST_MANIFESTS += [
|
|
'tryselect/test/cram.ini',
|
|
]
|
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
|
'lint/test/python.ini',
|
|
'rb/python.ini',
|
|
'tryselect/test/python.ini',
|
|
]
|