├── .github ├── FUNDING.yml ├── lockdown.yml └── workflows │ └── deploy.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── .gitkeep └── issue_templates │ ├── .gitkeep │ ├── Bug.md │ └── New Rule.md ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data.min.json └── tests └── .gitkeep /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/lockdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/.github/lockdown.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitlab/issue_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/New Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/.gitlab/issue_templates/New Rule.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | rules2.clearurls.xyz -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/README.md -------------------------------------------------------------------------------- /data.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClearURLs/Rules/HEAD/data.min.json -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------