├── .gitignore ├── CODE_OF_CONDUCT.md ├── README.md ├── credits ├── names.csv └── scripts │ ├── README.md │ ├── additional-faq.md │ ├── check-names.pl │ ├── check-names.py │ └── py-requirements.txt └── forums ├── checklist └── raw-ng-list.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | venv/ 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/README.md -------------------------------------------------------------------------------- /credits/names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/credits/names.csv -------------------------------------------------------------------------------- /credits/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/credits/scripts/README.md -------------------------------------------------------------------------------- /credits/scripts/additional-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/credits/scripts/additional-faq.md -------------------------------------------------------------------------------- /credits/scripts/check-names.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/credits/scripts/check-names.pl -------------------------------------------------------------------------------- /credits/scripts/check-names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/credits/scripts/check-names.py -------------------------------------------------------------------------------- /credits/scripts/py-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/credits/scripts/py-requirements.txt -------------------------------------------------------------------------------- /forums/checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/forums/checklist -------------------------------------------------------------------------------- /forums/raw-ng-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/community-data/HEAD/forums/raw-ng-list.txt --------------------------------------------------------------------------------