├── .editorconfig ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── lib ├── ar-latn.js ├── create-plugin.js ├── en.js ├── es.js ├── fr.js ├── it.js ├── pt-pt.js └── pt.js ├── license ├── package.json ├── readme.md ├── test.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | *.md 3 | -------------------------------------------------------------------------------- /lib/ar-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/ar-latn.js -------------------------------------------------------------------------------- /lib/create-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/create-plugin.js -------------------------------------------------------------------------------- /lib/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/en.js -------------------------------------------------------------------------------- /lib/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/es.js -------------------------------------------------------------------------------- /lib/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/fr.js -------------------------------------------------------------------------------- /lib/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/it.js -------------------------------------------------------------------------------- /lib/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/pt-pt.js -------------------------------------------------------------------------------- /lib/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/lib/pt.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retextjs/retext-profanities/HEAD/tsconfig.json --------------------------------------------------------------------------------