{"id":18148404,"url":"https://github.com/tinymins/eslint-plugin-lvmcn","last_synced_at":"2025-04-06T21:47:38.290Z","repository":{"id":65034382,"uuid":"580852513","full_name":"tinymins/eslint-plugin-lvmcn","owner":"tinymins","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-28T15:17:49.000Z","size":899,"stargazers_count":1,"open_issues_count":20,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-15T04:02:44.335Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/tinymins.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-21T16:02:17.000Z","updated_at":"2022-12-22T05:53:08.000Z","dependencies_parsed_at":"2024-12-20T09:42:40.735Z","dependency_job_id":"40bb22c2-1da8-457a-97fe-faa0b844f9bc","html_url":"https://github.com/tinymins/eslint-plugin-lvmcn","commit_stats":{"total_commits":24,"total_committers":2,"mean_commits":12.0,"dds":"0.16666666666666663","last_synced_commit":"d9e83219a03845cebd1c36b5cef8d720bd028592"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinymins%2Feslint-plugin-lvmcn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinymins%2Feslint-plugin-lvmcn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinymins%2Feslint-plugin-lvmcn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinymins%2Feslint-plugin-lvmcn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tinymins","download_url":"https://codeload.github.com/tinymins/eslint-plugin-lvmcn/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247557805,"owners_count":20958047,"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-11-01T23:08:33.461Z","updated_at":"2025-04-06T21:47:38.262Z","avatar_url":"https://github.com/tinymins.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eslint-plugin\n\n[![GitHub Actions Status](https://github.com/tinymins/eslint-plugin-lvmcn/workflows/Continuous%20Integration/badge.svg?branch=master)](https://github.com/tinymins/eslint-plugin-lvmcn/actions)\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n\u003c!-- Short and clear description of the package --\u003e\n\n## Usage\n\n### Basic setup\n\nTo use this plugin, install it as a `devDependency` first, alongside ESLint\nitself:\n\n```bash\nnpm install --save-dev eslint-plugin-lvmcn eslint\n```\n\n## Rules\n\n| Rule                             | Description                                            | Configurations   | Fixable  |\n| -------------------------------- | ------------------------------------------------------ | ---------------- | -------- |\n| [no-single-line-comment-block][] | Single line comments should not be in a block comment. | ![recommended][] | ![fix][] |\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your\nlocal machine for development and testing purposes. See usage notes on how to\nconsume this package in your project.\n\n\u003c!-- Instructions --\u003e\n\n### Prerequisites\n\nMinimal requirements to set up the project:\n\n- [Node.js](https://nodejs.org/en) v14, installation instructions can be found\n  on the official website, a recommended installation option is to use\n  [Node Version Manager](https://github.com/creationix/nvm#readme). It can be\n  installed in a\n  [few commands](https://nodejs.org/en/download/package-manager/#nvm).\n- A package manager [npm](https://www.npmjs.com). All instructions in the\n  documentation will follow the npm syntax.\n- Optionally a [Git](https://git-scm.com) client.\n\n### Installing\n\nStart by cloning the repository:\n\n```bash\ngit clone git@github.com:tinymins/eslint-plugin-lvmcn.git\n```\n\nIn case you don't have a git client, you can get the latest version directly by\nusing\n[this link](https://github.com/tinymins/eslint-plugin-lvmcn/archive/master.zip)\nand extracting the downloaded archive.\n\nGo the the right directory and install dependencies:\n\n```bash\ncd eslint-plugin-lvmcn\nnpm install\n```\n\nThat's it! You can now go to the next step.\n\n## Tests\n\n### Formatting\n\nThis project uses [Prettier](https://prettier.io) to automate formatting. All\nsupported files are being reformatted in a pre-commit hook. You can also use one\nof the two scripts to validate and optionally fix all of the files:\n\n```bash\nnpm run format\nnpm run format:fix\n```\n\n### Linting\n\nThis project uses [ESLint](https://eslint.org) to enable static analysis.\nTypeScript files are linted using a [custom configuration](./.eslintrc). You can\nuse one of the following scripts to validate and optionally fix all of the\nfiles:\n\n```bash\nnpm run lint\nnpm run lint:fix\n```\n\n### Coverage\n\n[Coveralls.io](https://coveralls.io)\n\n## Built with\n\n### Runtime libraries\n\n### Automation\n\n- [GitHub Actions](https://github.com/features/actions)\n- [Dependabot](https://dependabot.com/)\n\n### Source\n\n- [TypeScript](https://www.typescriptlang.org)\n\n### Delivery\n\n## Versioning\n\nThis project adheres to [Semantic Versioning](http://semver.org) v2.\n\n[no-single-line-comment-block]: docs/rules/no-single-line-comment-block.md\n[recommended]: https://img.shields.io/badge/-recommended-blueviolet.svg\n[fix]: https://img.shields.io/badge/-fix-yellow.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinymins%2Feslint-plugin-lvmcn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftinymins%2Feslint-plugin-lvmcn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinymins%2Feslint-plugin-lvmcn/lists"}