{"id":14978363,"url":"https://github.com/chowa/eslint-plugin-chowa-standard","last_synced_at":"2026-02-09T18:30:44.798Z","repository":{"id":57229756,"uuid":"232371128","full_name":"chowa/eslint-plugin-chowa-standard","owner":"chowa","description":"Chowa project javscript and typescript syntax standard","archived":false,"fork":false,"pushed_at":"2020-03-07T04:04:32.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-06T15:06:39.411Z","etag":null,"topics":["es","es6","eslint","eslint-plugin","js","ts","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chowa.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-07T16:49:23.000Z","updated_at":"2020-03-07T04:04:34.000Z","dependencies_parsed_at":"2022-09-11T06:51:32.992Z","dependency_job_id":null,"html_url":"https://github.com/chowa/eslint-plugin-chowa-standard","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chowa/eslint-plugin-chowa-standard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chowa%2Feslint-plugin-chowa-standard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chowa%2Feslint-plugin-chowa-standard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chowa%2Feslint-plugin-chowa-standard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chowa%2Feslint-plugin-chowa-standard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chowa","download_url":"https://codeload.github.com/chowa/eslint-plugin-chowa-standard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chowa%2Feslint-plugin-chowa-standard/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269351910,"owners_count":24402678,"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","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["es","es6","eslint","eslint-plugin","js","ts","typescript"],"created_at":"2024-09-24T13:57:28.878Z","updated_at":"2026-02-09T18:30:44.682Z","avatar_url":"https://github.com/chowa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"http://upload.ouliu.net/i/20200108163318i47lq.png\" width=\"240\"\u003e\n\u003c/p\u003e\n\n# eslint-plugin-chowa-standard\n\n[![npm](https://img.shields.io/npm/v/eslint-plugin-chowa-standard.svg)](https://www.npmjs.com/package/eslint-plugin-chowa-standard)\n[![npm](https://img.shields.io/npm/dm/eslint-plugin-chowa-standard.svg)](https://www.npmjs.com/package/eslint-plugin-chowa-standard)\n[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](https://opensource.org/licenses/MIT)\n\n\nChowa project javascript and typescript syntax standard\n\n## Install\n\n```\nnpm i eslint-plugin-chowa-standard --save-dev\n```\n\n## Usage\n\nIf you don't have eslint installed\n\n```\nnpm i eslint eslint-loader eslint-friendly-formatter  --save-dev\n```\n\n### webpack loader\n\n```\nmodule.exports = {\n    module: {\n        rules: [{\n            test: /\\.(j|t)sx?$/,\n            enforce: 'pre',\n            use: [\n                {\n                    loader: 'eslint-loader',\n                    options: {\n                        emitWarning: true,\n                        emitError: true,\n                        formatter: require('eslint-friendly-formatter')\n                    }\n                }\n            ]\n        }]\n    }\n}\n\n```\n### eslintrc\n\n```js\n{\n    extends: [\n        'plugin:chowa-standard/recommended'\n    ]\n}\n```\n\n\n## Configuration\n\n### React\n\n#### Install plugin\n\n```\nnpm i eslint-plugin-react --save-dev\n```\n\n#### eslintrc\n\n```js\n{\n    extends: [\n        'plugin:react/recommended',\n        'plugin:chowa-standard/recommended'\n    ],\n    plugins: [\n        'react'\n    ],\n    env: {\n        node: false,\n        browser: true,\n        es6: true\n    },\n    parserOptions: {\n        ecmaVersion: 2017,\n        sourceType: 'module',\n        jsx: true\n    },\n    settings: {\n        react: {\n            pragma: 'React',\n            version: 'detect'\n        }\n    }\n}\n```\n\n### Typescript\n\n#### Install plugin and parser\n\n```\nnpm i @typescript-eslint/eslint-plugin @typescript-eslint/parser --save-dev\n```\n\n#### eslintrc\n\n```js\n{\n    parser: '@typescript-eslint/parser',\n    extends: [\n        'plugin:@typescript-eslint/eslint-recommended',\n        'plugin:@typescript-eslint/recommended',\n        'plugin:chowa-standard/recommended'\n    ],\n    plugins: [\n        '@typescript-eslint'\n    ],\n    env: {\n        node: true,\n        es6: true\n    },\n    parserOptions: {\n        ecmaVersion: 2017,\n        sourceType: 'module'\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchowa%2Feslint-plugin-chowa-standard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchowa%2Feslint-plugin-chowa-standard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchowa%2Feslint-plugin-chowa-standard/lists"}