gitextract_radjmpqj/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── e2e/ │ ├── package.json │ ├── project-fixture/ │ │ ├── .vscode/ │ │ │ └── settings.json │ │ ├── main.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── server-fixture/ │ │ └── index.js │ └── tests/ │ ├── assert.js │ ├── codeFixes.test.js │ ├── errors.test.js │ └── helpers.js ├── package.json ├── src/ │ ├── config.ts │ ├── configFileWatcher.ts │ ├── index.ts │ ├── logger.ts │ ├── plugin.ts │ ├── runner/ │ │ ├── failures.ts │ │ ├── index.ts │ │ ├── mruCache.ts │ │ └── test/ │ │ ├── mruCache.test.ts │ │ └── runner.test.ts │ └── settings.ts ├── test-data/ │ ├── invalid-install/ │ │ ├── package.json │ │ ├── test.ts │ │ └── tslint.json │ ├── js-disabled/ │ │ ├── test.js │ │ ├── test.mjs │ │ └── tslint.json │ ├── no-tslint/ │ │ └── test.ts │ ├── no-unused-variables/ │ │ ├── test.ts │ │ └── tslint.json │ ├── overlapping-errors/ │ │ ├── test.ts │ │ └── tslint.json │ ├── warnings/ │ │ ├── test.ts │ │ └── tslint.json │ ├── with-tslint/ │ │ ├── excluded.ts │ │ ├── test.js │ │ ├── test.ts │ │ ├── tslint.json │ │ └── unused-variable.ts │ └── with-tslint-js-config-file/ │ ├── test.ts │ └── tslint.js ├── test-workspace/ │ ├── .vscode/ │ │ └── settings.json │ ├── examples/ │ │ ├── array-type.ts │ │ ├── arrow-parens.ts │ │ ├── eval.ts │ │ ├── no-var-keyword.ts │ │ ├── no_unused-variable.ts │ │ ├── ordered-imports.ts │ │ ├── overlapping-fixes.ts │ │ ├── quotemark.ts │ │ ├── semicolon.ts │ │ ├── test-javascript.js │ │ ├── test.d.ts │ │ ├── trailing-comma.ts │ │ └── triple-equals.ts │ ├── package.json │ ├── tsconfig.json │ └── tslint.json ├── thirdpartynotices.txt ├── tsconfig.json └── tslint.main.json