{"id":13484618,"url":"https://github.com/eslint/eslint-jp","last_synced_at":"2025-10-19T11:30:47.235Z","repository":{"id":65995823,"uuid":"52291427","full_name":"eslint/eslint-jp","owner":"eslint","description":"Repository for creating and triaging issues in Japanese","archived":true,"fork":false,"pushed_at":"2016-04-01T10:55:15.000Z","size":3,"stargazers_count":47,"open_issues_count":0,"forks_count":6,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-10-17T06:00:57.009Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/eslint.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,"governance":null}},"created_at":"2016-02-22T17:28:44.000Z","updated_at":"2025-09-24T07:44:35.000Z","dependencies_parsed_at":"2023-05-21T19:30:29.942Z","dependency_job_id":null,"html_url":"https://github.com/eslint/eslint-jp","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"3cbd3b67118f979b61441e9ce4c6143a64d4a261"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eslint/eslint-jp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint%2Feslint-jp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint%2Feslint-jp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint%2Feslint-jp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint%2Feslint-jp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eslint","download_url":"https://codeload.github.com/eslint/eslint-jp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint%2Feslint-jp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279749573,"owners_count":26220748,"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-10-19T02:00:07.647Z","response_time":64,"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":[],"created_at":"2024-07-31T17:01:27.347Z","updated_at":"2025-10-19T11:30:47.203Z","avatar_url":"https://github.com/eslint.png","language":null,"funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# ESLint\n\n[![Gitter](https://badges.gitter.im/eslint/eslint-jp.svg)](https://gitter.im/eslint/eslint-jp?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n\nこのリポジトリは [ESLint](https://github.com/eslint/eslint) に関するバグ報告・機能提案・質問を日本語で行える場所です。\n\nESLint に関することなら、何でもお気軽に [Issue](https://github.com/eslint/eslint-jp/issues/new) を作ってみてください。\n\n例えば、\n\n- バグっぽい動作を見つけた\n- こんな機能 / ルールがほしい\n- この機能を日本語で解説して欲しい\n- ○○したいんだけど、どうすればいいの?\n\nオープンソース プロジェクトにとってユーザーの声は財産です。\nどうぞよろしくお願いします。\n\n## 解説記事など\n\n- [ESLint 最初の一歩](http://qiita.com/mysticatea/items/f523dab04a25f617c87d)\n- [ESLint v2.0.0 の変更点まとめ](http://qiita.com/mysticatea/items/8bcecd821cca9e849078)\n- [共有設定でらくらく ESLint](http://qiita.com/mysticatea/items/dc35ced6bd5e782f50cd)\n- [ESLint をグローバルにインストールせずに使う](http://qiita.com/mysticatea/items/6bd56ff691d3a1577321)\n- [ESLint のカスタムルールを作ろう! (その1)](http://qiita.com/mysticatea/items/cc3f648e11368799e66c)\n\n----\n\n以下は [README.md](https://github.com/eslint/eslint#readme) の一部です。\n\n## インストール方法\n\nESLint は npm を使ってインストールします。\n\n    npm install -g eslint\n\n## 使い方\n\n最初に `--init` オプションを利用して設定ファイルを作ります。\n\n    eslint --init\n\nそして、任意の JS コードに対して eslint コマンドを実行します。\n\n    eslint test.js test2.js\n\n## 設定ファイル\n\n`eslint --init` コマンドを実行すると、`.eslintrc` ファイルが作成されます。\n`.eslintrc` ファイルによって、どんなルールで JS コードを検証するかを設定することができます。\n\n```json\n{\n    \"extends\": \"eslint:recommended\",\n    \"rules\": {\n        \"semi\": [2, \"always\"],\n        \"quotes\": [2, \"double\"]\n    }\n}\n```\n\n`\"semi\"` と `\"quotes\"` はルール名です ([ルール一覧](http://eslint.org/docs/rules) (英語))。\n`2` とあるのは各ルールの警告レベルを設定しています。\n\n* `0` - ルールをオフにします。\n* `1` - 警告モードでルールをオンにします (ルール違反を見つけても `eslint` コマンドは正常終了します)。\n* `2` - エラーモードでルールをオンにします (ルール違反を見つけたら `eslint` コマンドは異常終了(exit code 1)します)。\n\nこれらのルール・レベルによって、ESLint のふるまいを細やかに制御できます。\n設定項目についての詳細は [configuration docs](http://eslint.org/docs/user-guide/configuring) (英語) を参照ください。\n\n## 開発チーム\n\n* Nicholas C. Zakas ([@nzakas](https://github.com/nzakas)) - project lead\n* Ilya Volodin ([@ilyavolodin](https://github.com/ilyavolodin)) - reviewer\n* Brandon Mills ([@btmills](https://github.com/btmills)) - reviewer\n* Gyandeep Singh ([@gyandeeps](https://github.com/gyandeeps)) - reviewer\n* Toru Nagashima (長島 徹) ([@mysticatea](https://github.com/mysticatea)) - reviewer\n* Mathias Schreck ([@lo1tuma](https://github.com/lo1tuma)) - committer\n* Jamund Ferguson ([@xjamundx](https://github.com/xjamundx)) - committer\n* Ian VanSchooten ([@ianvs](https://github.com/ianvs)) - committer\n* Burak Yiğit Kaya ([@byk](https://github.com/byk)) - committer\n* Alberto Rodríguez ([@alberto](https://github.com/alberto)) - committer\n* Kai Cataldo ([@kaicataldo](https://github.com/kaicataldo)) - committer\n* Michael Ficarra ([@michaelficarra](https://github.com/michaelficarra)) - committer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feslint%2Feslint-jp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feslint%2Feslint-jp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feslint%2Feslint-jp/lists"}