This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env pwsh | |
| <# | |
| .SYNOPSIS | |
| Counts lines of code in a directory tree, summarized by file extension / language. | |
| .DESCRIPTION | |
| Recursively scans a directory, skipping common noise directories (.git, node_modules, etc.) | |
| and binary files, then prints a table of extension, language, file count, and line count, | |
| sorted by line count descending. | |
| Performance: the file walk + line counting is done by an embedded C# type (compiled via |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "diffEditor.hideUnchangedRegions.enabled": true, | |
| "workbench.colorTheme": "Darker than One Dark Pro (Contrast)", | |
| "editor.mouseWheelZoom": true, | |
| "workbench.colorCustomizations": { | |
| "list.activeSelectionForeground": "#FF990F", | |
| "list.inactiveSelectionForeground": "#FF990F", | |
| "sideBar.foreground": "#e2e2dc", | |
| "editor.lineHighlightBackground": "#33363A", | |
| "gitlens.trailingLineForegroundColor":"#c7a674" |