GitHub: Better Line Counts
Remove generated files from GitHub line counts
GitHub: Better Line Counts क्या है?
GitHub: Better Line Counts Aaron Klinker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove generated files from GitHub line counts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub: Better Line Counts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |