{"id":15797536,"url":"https://github.com/0xjac/eslint-formatter-stylish-verbose","last_synced_at":"2025-06-25T19:03:56.893Z","repository":{"id":57229700,"uuid":"120893503","full_name":"0xjac/eslint-formatter-stylish-verbose","owner":"0xjac","description":"Modified version of the stylish reporter for ESLint which logs files without warning/errors.","archived":false,"fork":false,"pushed_at":"2018-02-09T13:53:22.000Z","size":59,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T22:46:59.407Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xjac.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-09T10:41:05.000Z","updated_at":"2023-12-10T10:49:38.000Z","dependencies_parsed_at":"2022-09-11T06:51:38.371Z","dependency_job_id":null,"html_url":"https://github.com/0xjac/eslint-formatter-stylish-verbose","commit_stats":null,"previous_names":["jacquesd/eslint-formatter-stylish-verbose"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0xjac/eslint-formatter-stylish-verbose","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xjac%2Feslint-formatter-stylish-verbose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xjac%2Feslint-formatter-stylish-verbose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xjac%2Feslint-formatter-stylish-verbose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xjac%2Feslint-formatter-stylish-verbose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xjac","download_url":"https://codeload.github.com/0xjac/eslint-formatter-stylish-verbose/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xjac%2Feslint-formatter-stylish-verbose/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261937031,"owners_count":23232845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-05T00:09:34.941Z","updated_at":"2025-06-25T19:03:56.873Z","avatar_url":"https://github.com/0xjac.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eslint-formatter-stylish-verbose\n[![Build Status](https://travis-ci.org/jacquesd/eslint-formatter-stylish-verbose.svg?branch=master)](https://travis-ci.org/jacquesd/eslint-formatter-stylish-verbose)\n[![Codecov](https://img.shields.io/codecov/c/github/jacquesd/eslint-formatter-stylish-verbose.svg)](https://codecov.io/gh/jacquesd/eslint-formatter-stylish-verbose)\n[![License](https://img.shields.io/github/license/jacquesd/eslint-formatter-stylish-verbose.svg)](https://github.com/jacquesd/eslint-formatter-stylish-verbose/blob/master/LICENSE)\n[![npm version](https://badge.fury.io/js/eslint-formatter-stylish-verbose.svg)](https://www.npmjs.com/package/eslint-formatter-stylish-verbose)\n\n\u003e Modified version of the [stylish reporter](https://github.com/eslint/eslint/blob/master/tests/lib/formatters/stylish.js) for [ESLint](https://eslint.org) which logs files without warning/errors.\n\n![](screenshot.png)\n\n## Install\n\n```\n$ npm install --save-dev eslint-formatter-stylish-verbose\n```\n\n## Usage\n\n### ESLint CLI\n\n```\n$ eslint --format=stylish-verbose file.js\n```\n\n### [grunt-eslint](https://github.com/sindresorhus/grunt-eslint)\n\n```js\ngrunt.initConfig({\n\teslint: {\n\t\ttarget: ['file.js'].\n\t\toptions: {\n\t\t\tformat: 'stylish-verbose'\n\t\t}\n\t}\n});\n\ngrunt.loadNpmTasks('grunt-eslint');\ngrunt.registerTask('default', ['eslint']);\n```\n\n### [gulp-eslint](https://github.com/adametry/gulp-eslint)\n\n```js\nconst gulp = require('gulp');\nconst eslint = require('gulp-eslint');\n\ngulp.task('lint', () =\u003e\n\tgulp.src('file.js')\n\t\t.pipe(eslint())\n\t\t.pipe(eslint.format('stylish-verbose'))\n);\n```\n\n### [eslint-loader](https://github.com/MoOx/eslint-loader) *(webpack)*\n\n```js\nmodule.exports = {\n\tentry: ['file.js'],\n\tmodule: {\n\t\trules: [\n\t\t\t{\n\t\t\t\ttest: /\\.js$/,\n\t\t\t\texclude: /node_modules/,\n\t\t\t\tloader: 'eslint-loader',\n\t\t\t\toptions: {\n\t\t\t\t\tformatter: require('eslint-formatter-stylish-verbose')\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n};\n```\n\n## License\n\nMIT © [Jacques Dafflon](https://sindresorhus.com)\n\n## Credits\n\nCredits for the [original implementation of the stylish reporter](https://github.com/eslint/eslint/blob/master/tests/lib/formatters/stylish.js) go to Sindre Sorhus, @[sindresorhus](https://github.com/sindresorhus).\n\nThis README is adapted from the [original README](https://github.com/sindresorhus/eslint-stylish/blob/master/readme.md) of---the now [deprecated version](https://github.com/sindresorhus/eslint-stylish) of---the stylish reporter.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xjac%2Feslint-formatter-stylish-verbose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xjac%2Feslint-formatter-stylish-verbose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xjac%2Feslint-formatter-stylish-verbose/lists"}