├── .circleci └── config.yml ├── .coveragerc ├── .github └── workflows │ └── quic-organization-repolinter.yml ├── .gitignore ├── AUTHORS ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin ├── comments └── testdata │ └── hello.c ├── comment_filter ├── __init__.py ├── _version.py ├── language.py ├── rfc.py └── rfc_test.py ├── setup.cfg ├── setup.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = *_test.py 3 | -------------------------------------------------------------------------------- /.github/workflows/quic-organization-repolinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/.github/workflows/quic-organization-repolinter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/README.md -------------------------------------------------------------------------------- /bin/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/bin/comments -------------------------------------------------------------------------------- /bin/testdata/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/bin/testdata/hello.c -------------------------------------------------------------------------------- /comment_filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/comment_filter/__init__.py -------------------------------------------------------------------------------- /comment_filter/_version.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comment_filter/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/comment_filter/language.py -------------------------------------------------------------------------------- /comment_filter/rfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/comment_filter/rfc.py -------------------------------------------------------------------------------- /comment_filter/rfc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/comment_filter/rfc_test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/comment-filter/HEAD/tox.ini --------------------------------------------------------------------------------