├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── --------.md │ ├── config.yml │ └── suggestion_CN.md └── PULL_REQUEST_TEMPLATE │ └── CN.md ├── LICENSE ├── README.md └── strict-sensitive-word.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://sponsor.cjh0613.com 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/.github/ISSUE_TEMPLATE/--------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/.github/ISSUE_TEMPLATE/suggestion_CN.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/.github/PULL_REQUEST_TEMPLATE/CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/README.md -------------------------------------------------------------------------------- /strict-sensitive-word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjh0613/strict-sensitive-word/HEAD/strict-sensitive-word.txt --------------------------------------------------------------------------------