├── .github └── workflows │ ├── auto-update.yml │ ├── ci.yml │ └── is-dist-up-to-date.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── formatters.test.js ├── package.json ├── packages ├── eslint-formatter-checkstyle │ ├── examples │ │ ├── multiple-files.xml │ │ ├── no-errors.xml │ │ ├── single-file.xml │ │ └── with-fixable.xml │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ ├── readme.md │ └── xml-escape.js ├── eslint-formatter-codeframe │ └── readme.md ├── eslint-formatter-compact │ ├── examples │ │ ├── multiple-files.log │ │ ├── no-errors.log │ │ ├── single-file.log │ │ └── with-fixable.log │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── eslint-formatter-jslint-xml │ ├── examples │ │ ├── multiple-files.xml │ │ ├── no-errors.xml │ │ ├── single-file.xml │ │ └── with-fixable.xml │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ ├── readme.md │ └── xml-escape.js ├── eslint-formatter-json-with-metadata │ ├── examples │ │ ├── multiple-files.json │ │ ├── no-errors.json │ │ ├── single-file.json │ │ └── with-fixable.json │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── eslint-formatter-json │ ├── examples │ │ ├── multiple-files.json │ │ ├── no-errors.json │ │ ├── single-file.json │ │ └── with-fixable.json │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── eslint-formatter-junit │ ├── examples │ │ ├── multiple-files.xml │ │ ├── no-errors.xml │ │ ├── single-file.xml │ │ └── with-fixable.xml │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ ├── readme.md │ └── xml-escape.js ├── eslint-formatter-stylish │ ├── examples │ │ ├── multiple-files.log │ │ ├── no-errors.log │ │ ├── single-file.log │ │ └── with-fixable.log │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── eslint-formatter-table │ └── readme.md ├── eslint-formatter-tap │ ├── examples │ │ ├── multiple-files.log │ │ ├── no-errors.log │ │ ├── single-file.log │ │ └── with-fixable.log │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── eslint-formatter-unix │ ├── examples │ │ ├── multiple-files.log │ │ ├── no-errors.log │ │ ├── single-file.log │ │ └── with-fixable.log │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md └── eslint-formatter-visualstudio │ ├── examples │ ├── multiple-files.log │ ├── no-errors.log │ ├── single-file.log │ └── with-fixable.log │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md └── readme.md /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/is-dist-up-to-date.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/.github/workflows/is-dist-up-to-date.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | eslint 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/.prettierignore -------------------------------------------------------------------------------- /formatters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/formatters.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/examples/multiple-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/examples/multiple-files.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/examples/no-errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/examples/no-errors.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/examples/single-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/examples/single-file.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/examples/with-fixable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/examples/with-fixable.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/license -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-checkstyle/xml-escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-checkstyle/xml-escape.js -------------------------------------------------------------------------------- /packages/eslint-formatter-codeframe/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-codeframe/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/examples/multiple-files.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/examples/multiple-files.log -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/examples/no-errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/examples/single-file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/examples/single-file.log -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/examples/with-fixable.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/examples/with-fixable.log -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/license -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-compact/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-compact/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/examples/multiple-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/examples/multiple-files.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/examples/no-errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/examples/no-errors.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/examples/single-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/examples/single-file.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/examples/with-fixable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/examples/with-fixable.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/license -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-jslint-xml/xml-escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-jslint-xml/xml-escape.js -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/examples/multiple-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/examples/multiple-files.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/examples/no-errors.json: -------------------------------------------------------------------------------- 1 | {"results":[]} -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/examples/single-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/examples/single-file.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/examples/with-fixable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/examples/with-fixable.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/license -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json-with-metadata/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json-with-metadata/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-json/examples/multiple-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/examples/multiple-files.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json/examples/no-errors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /packages/eslint-formatter-json/examples/single-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/examples/single-file.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json/examples/with-fixable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/examples/with-fixable.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-json/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-json/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/license -------------------------------------------------------------------------------- /packages/eslint-formatter-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-json/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-json/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/examples/multiple-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/examples/multiple-files.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/examples/no-errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/examples/no-errors.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/examples/single-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/examples/single-file.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/examples/with-fixable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/examples/with-fixable.xml -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/license -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-junit/xml-escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-junit/xml-escape.js -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/examples/multiple-files.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/examples/multiple-files.log -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/examples/no-errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/examples/single-file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/examples/single-file.log -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/examples/with-fixable.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/examples/with-fixable.log -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/license -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-stylish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-stylish/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-table/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-table/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/examples/multiple-files.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/examples/multiple-files.log -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/examples/no-errors.log: -------------------------------------------------------------------------------- 1 | TAP version 13 2 | 1..0 3 | -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/examples/single-file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/examples/single-file.log -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/examples/with-fixable.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/examples/with-fixable.log -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/license -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-tap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-tap/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/examples/multiple-files.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/examples/multiple-files.log -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/examples/no-errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/examples/single-file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/examples/single-file.log -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/examples/with-fixable.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/examples/with-fixable.log -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/license -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-unix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-unix/readme.md -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/examples/multiple-files.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/examples/multiple-files.log -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/examples/no-errors.log: -------------------------------------------------------------------------------- 1 | no problems -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/examples/single-file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/examples/single-file.log -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/examples/with-fixable.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/examples/with-fixable.log -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/index.d.ts -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/index.js -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/license -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-visualstudio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/packages/eslint-formatter-visualstudio/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslint-community/eslint-formatters/HEAD/readme.md --------------------------------------------------------------------------------