gitextract_g3efd7_y/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .husky/ │ ├── pre-commit │ └── pre-push ├── .npmignore ├── .nvmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── scripts/ │ ├── jsdoc.config.json │ ├── karma.conf.js │ └── rollup.config.js ├── src/ │ ├── plugin.js │ ├── quality-level-list.js │ └── quality-level.js ├── test/ │ ├── plugin.test.js │ ├── quality-level-list.test.js │ └── test-helpers.js └── tsconfig.json