├── .editorconfig ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── .secrets.baseline ├── LICENSE.md ├── README.md ├── css ├── .stylelintrc.yaml ├── README.md ├── example.css ├── package-lock.json └── package.json ├── javascript ├── .eslintrc.yaml ├── README.md ├── example.js ├── package-lock.json └── package.json └── python ├── .flake8 ├── .isort.cfg ├── Pipfile ├── Pipfile.lock ├── README.md ├── example.py ├── example_utils.py └── setup.cfg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/README.md -------------------------------------------------------------------------------- /css/.stylelintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/css/.stylelintrc.yaml -------------------------------------------------------------------------------- /css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/css/README.md -------------------------------------------------------------------------------- /css/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/css/example.css -------------------------------------------------------------------------------- /css/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/css/package-lock.json -------------------------------------------------------------------------------- /css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/css/package.json -------------------------------------------------------------------------------- /javascript/.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/javascript/.eslintrc.yaml -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/javascript/example.js -------------------------------------------------------------------------------- /javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/javascript/package-lock.json -------------------------------------------------------------------------------- /javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/javascript/package.json -------------------------------------------------------------------------------- /python/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | -------------------------------------------------------------------------------- /python/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/.isort.cfg -------------------------------------------------------------------------------- /python/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/Pipfile -------------------------------------------------------------------------------- /python/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/Pipfile.lock -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/README.md -------------------------------------------------------------------------------- /python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/example.py -------------------------------------------------------------------------------- /python/example_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/example_utils.py -------------------------------------------------------------------------------- /python/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/coding-standards/HEAD/python/setup.cfg --------------------------------------------------------------------------------