{"id":15198499,"url":"https://github.com/naver/eslint-config-naver","last_synced_at":"2025-10-02T13:31:16.045Z","repository":{"id":45212298,"uuid":"85187349","full_name":"naver/eslint-config-naver","owner":"naver","description":"Naver JavaScript Coding Conventions rules for eslint","archived":true,"fork":false,"pushed_at":"2023-11-16T06:37:59.000Z","size":98,"stargazers_count":221,"open_issues_count":12,"forks_count":52,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-01-12T09:39:07.562Z","etag":null,"topics":["coding-standards","eslint","eslint-config","javascript","naver"],"latest_commit_sha":null,"homepage":"","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/naver.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":"2017-03-16T11:15:50.000Z","updated_at":"2024-09-30T08:00:18.000Z","dependencies_parsed_at":"2023-11-16T07:31:43.901Z","dependency_job_id":"da8a3521-7ef0-4564-9047-0aabb20ee0cd","html_url":"https://github.com/naver/eslint-config-naver","commit_stats":{"total_commits":40,"total_committers":8,"mean_commits":5.0,"dds":"0.32499999999999996","last_synced_commit":"ccdf0e4d329e0eefda8fc7246eac22001e37409e"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naver%2Feslint-config-naver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naver%2Feslint-config-naver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naver%2Feslint-config-naver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naver%2Feslint-config-naver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naver","download_url":"https://codeload.github.com/naver/eslint-config-naver/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235000747,"owners_count":18920235,"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":["coding-standards","eslint","eslint-config","javascript","naver"],"created_at":"2024-09-28T01:20:19.082Z","updated_at":"2025-10-02T13:31:15.681Z","avatar_url":"https://github.com/naver.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"-----------------------------------\n\n아쉽게도 현재 해당 저장소를 운영하고 있지 않습니다.\n여러 곳에서 아직 사용하고 있긴 하지만 부분적으로 수정해서 사용하고 있는 상황이고 예전 버전이라 운영하지 않기로 결정했습니다.\n가능하면 [원본 저장소](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb-base)를 참고해주세요.\n\n감사합니다.\n\n-----------------------------------\n# Naver Javascript Coding Conventions\n- eslint-config-naver는 네이버 자바스크립트 코딩컨벤션을 지원하는 [eslint](http://eslint.org/) 룰 셋입니다.\n- eslint-config-naver는 [eslint-config-airbnb-base](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb-base) 룰셋 기준으로 작성되었습니다.\n\n\u003e ### eslint-config-naver는 2개의 룰 셋을 제공합니다.\n\u003e - ES6+ 룰 셋 : `naver`\n\u003e - ES5 룰 셋 : `naver/es5`\n\n## Install\n```\n#npm install eslint-config-naver\n```\n\n## Usage\n### ES6+ 룰 셋을 사용하는 경우\n```\n// .eslintrc 파일\n{\n  \"extends\": \"naver\",\n  \"rules\": {\n    // 프로젝트별 적용할 Rules\n  }\n}\n```\n\n### ES5 룰 셋을 사용하는 경우\n```\n// .eslintrc 파일\n{\n  \"extends\": \"naver/es5\",\n  \"rules\": {\n    // 프로젝트별 적용할 Rules\n  }\n}\n```\n\n## Naver JavaScript Style Guilde\n상세한 내용은 다음의 JavaScript 스타일 가이드를 참조하세요  \n\n### [Naver JavaScript Style Guilde](STYLE_GUIDE.md)\n\n\n## License\n`eslint-config-naver` is released under the [MIT license](LICENSE).\n\n```\nCopyright (c) 2019 NAVER Corp.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaver%2Feslint-config-naver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaver%2Feslint-config-naver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaver%2Feslint-config-naver/lists"}