├── .bundle └── config ├── .github ├── .emass-repo-ignore └── workflows │ ├── acronym-ci.yml │ └── script-ci.yml ├── .gitignore ├── .python-version ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Makefile ├── README.md ├── acronyms.csv ├── format_acronyms ├── __init__.py └── format_acronyms.py ├── poetry.lock ├── pyproject.toml ├── scripts ├── check-spelling.sh ├── install-spelling-tools.sh ├── print-dupe-acronyms.sh ├── print-dupe-definitions.sh ├── va.dic └── wtf.sh └── tests ├── __init__.py └── test_format_acronyms.py /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/.bundle/config -------------------------------------------------------------------------------- /.github/.emass-repo-ignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/acronym-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/.github/workflows/acronym-ci.yml -------------------------------------------------------------------------------- /.github/workflows/script-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/.github/workflows/script-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.4 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.8 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | gem 'csvlint', "~>1.3.0" 5 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/README.md -------------------------------------------------------------------------------- /acronyms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/acronyms.csv -------------------------------------------------------------------------------- /format_acronyms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /format_acronyms/format_acronyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/format_acronyms/format_acronyms.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/check-spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/scripts/check-spelling.sh -------------------------------------------------------------------------------- /scripts/install-spelling-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/scripts/install-spelling-tools.sh -------------------------------------------------------------------------------- /scripts/print-dupe-acronyms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/scripts/print-dupe-acronyms.sh -------------------------------------------------------------------------------- /scripts/print-dupe-definitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/scripts/print-dupe-definitions.sh -------------------------------------------------------------------------------- /scripts/va.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/scripts/va.dic -------------------------------------------------------------------------------- /scripts/wtf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/scripts/wtf.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_format_acronyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/department-of-veterans-affairs/acronyms/HEAD/tests/test_format_acronyms.py --------------------------------------------------------------------------------