GitHub: Better Line Counts

Remove generated files from GitHub line counts

GitHub: Better Line Counts란 무엇입니까?

GitHub: Better Line Counts은(는) Aaron Klinker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove generated files from GitHub line counts"입니다.

확장 프로그램 스크린샷

screenshot

GitHub: Better Line Counts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Isn't it annoying when you open a small PR, but when you look at the diff, it's +2000 -16 because you installed a new library? Or what if you had to review that PR, don't line counts like that dissuade you from starting the review?

In reality, lots of code is generated nowadays and GitHub's line counts are not representative of a PR's true size.

This extension subtracts generated files from the total line counts, giving you a better idea of how big a PR really is. That's it. That's all it does.

Generated files are detected from the branch's root .gitattributes file. See GitHub's docs to learn how to mark a file as generated: https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github

For a simple example, checkout this extension's .gitattributes file! https://github.com/aklinker1/github-better-line-counts/blob/main/.gitattributes

---

The extension is open source. Feel free to contribute if you have any ideas or just star it 😀
https://github.com/aklinker1/github-better-line-counts                    

확장 프로그램 기본 정보

이름 GitHub: Better Line Counts GitHub: Better Line Counts
ID ocfdgncpifmegplaglcnglhioflaimkd
공식 URL https://chromewebstore.google.com/detail/github-better-line-counts/ocfdgncpifmegplaglcnglhioflaimkd
설명 Remove generated files from GitHub line counts
파일 크기 123 KB
설치 횟수 82
현재 버전 1.7.1
최근 업데이트 2024-02-04
출시 날짜 2023-02-21
평점 5.00/5 총 2 개의 평점
개발자 Aaron Klinker
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/aklinker1/github-better-line-counts
도움말 페이지 URL https://github.com/aklinker1/github-better-line-counts/issues
개인정보 보호 정책 페이지 URL https://github.com/aklinker1/github-better-line-counts/blob/main/.github/assets/privacy-policy.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub: Better Line Counts",
    "description": "Remove generated files from GitHub line counts",
    "version": "1.7.1",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "96": "icon\/96.png",
        "128": "icon\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content-scripts\/content.css"
            ],
            "js": [
                "content-scripts\/content.js"
            ]
        }
    ]
}