hacking/setup.cfg
Joe Gordon bdeb807559 Move comment checks into their own module
hacking.core is getting too big, this is the first patch to pull out a
group of checks (H1xx) into their own module.

Change-Id: Ibd0668be59ce6a440b94788692d3784da24d70d8
2014-04-23 10:03:18 -07:00

72 lines
2.5 KiB
INI

[metadata]
name = hacking
author = OpenStack
author-email = openstack-dev@lists.openstack.org
summary = OpenStack Hacking Guideline Enforcement
description-file =
README.rst
home-page = http://github.com/openstack-dev/hacking
classifier =
Development Status :: 4 - Beta
Environment :: Console
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
[files]
packages =
hacking
[entry_points]
flake8.extension =
H000 = hacking.core:ProxyChecks
H101 = hacking.checks.comments:hacking_todo_format
H102 = hacking.checks.comments:hacking_has_license
H103 = hacking.checks.comments:hacking_has_correct_license
H104 = hacking.checks.comments:hacking_has_only_comments
H201 = hacking.core:hacking_except_format
H202 = hacking.core:hacking_except_format_assert
H231 = hacking.core:hacking_python3x_except_compatible
H232 = hacking.core:hacking_python3x_octal_literals
H233 = hacking.core:hacking_python3x_print_function
H234 = hacking.core:hacking_no_assert_equals
H235 = hacking.core:hacking_no_assert_underscore
H236 = hacking.core:hacking_python3x_metaclass
H237 = hacking.core:hacking_no_removed_module
H301 = hacking.core:hacking_import_rules
H305 = hacking.core:hacking_import_groups
H306 = hacking.core:hacking_import_alphabetical
H307 = hacking.core:hacking_import_groups_together
H401 = hacking.core:hacking_docstring_start_space
H402 = hacking.core:hacking_docstring_one_line
H403 = hacking.core:hacking_docstring_multiline_end
H404 = hacking.core:hacking_docstring_multiline_start
H405 = hacking.core:hacking_docstring_summary
H501 = hacking.core:hacking_no_locals
H903 = hacking.core:hacking_no_cr
H700 = hacking.core:hacking_localization_strings
H801 = hacking.core:OnceGitCheckCommitTitleBug
H802 = hacking.core:OnceGitCheckCommitTitleLength
H803 = hacking.core:OnceGitCheckCommitTitlePeriodEnding
H901 = hacking.core:hacking_is_not
H902 = hacking.core:hacking_not_in
H904 = hacking.core:hacking_no_backsplash_line_continuation
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0