├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── --------.md │ ├── config.yml │ ├── report-problem.md │ ├── suggestion_CN.md │ └── suggestion_EN.md └── PULL_REQUEST_TEMPLATE │ ├── CN.md │ └── EN.md ├── LICENSE ├── README.md ├── README_en.md ├── sensitive_words.txt └── sensitive_words_lines.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/ISSUE_TEMPLATE/--------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/ISSUE_TEMPLATE/report-problem.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/ISSUE_TEMPLATE/suggestion_CN.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/ISSUE_TEMPLATE/suggestion_EN.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/PULL_REQUEST_TEMPLATE/CN.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/.github/PULL_REQUEST_TEMPLATE/EN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/README_en.md -------------------------------------------------------------------------------- /sensitive_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/sensitive_words.txt -------------------------------------------------------------------------------- /sensitive_words_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/tencent-sensitive-words/HEAD/sensitive_words_lines.txt --------------------------------------------------------------------------------