sc

command module
v0.0.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 7, 2023 License: MIT Imports: 4 Imported by: 0

README

GoDev GitHub go.mod Go version BuildStatus Go Report Card TODOs codecov GitHub release (latest SemVer)

简介

统计源码行数

编译

go build 

安装

go get -u github.com/weibaohui/sc

基本用法

binary user

Usage:
  sc [flags]

Flags:
  -d, --debug               调试
      --exclude string      跳过文件夹列表,使用逗号分割
      --force               使用自定义配置覆盖默认初始配置,否则合并
  -h, --help                help for sc
  -p, --path string         扫描路径 (default ".")
      --skipSuffix string   跳过文件后缀列表,使用逗号分割

排除x文件夹,跳过后缀为.x .y .z 三种后缀

sc -d --skipSuffix ".x,.y,.z" --exclude "x"

docker use

docker -v 挂载待扫描目录到容器里面 sc -p 扫描指定目录

docker run -it --rm -v $(pwd):/code/  weibh/sc  -p /code/ 

输出值

包含了git的用量统计,代码行数的统计

{
  "git": {
    "Branch": 1,
    "Tags": 4,
    "Commit": [
      {
        "Name": "master",
        "CommitCount": 147
      }
    ],
    "AuthorCountList": [
      {
        "Email": "xxxx@xxx.com",
        "Name": "xxx",
        "CommitCount": 8363,
        "Addition": 1643663,
        "Deletion": 240346
      },
      {
        "Email": "qq@qq.com",
        "Name": "qq-ci-bot",
        "CommitCount": 3,
        "Addition": 73,
        "Deletion": 0
      }
    ],
    "CurrentBranch": "master"
  },
  "source": {
    "FileTypeCounterList": [
      {
        "Code": 256,
        "Blank": 105,
        "Comment": 0,
        "Name": ""
      },
      {
        "Code": 1078,
        "Blank": 1,
        "Comment": 0,
        "Name": ".sum"
      },
      {
        "Code": 87,
        "Blank": 12,
        "Comment": 0,
        "Name": ".toml"
      },
      {
        "Code": 4339,
        "Blank": 441,
        "Comment": 0,
        "Name": ".rs"
      },
      {
        "Code": 486,
        "Blank": 274,
        "Comment": 0,
        "Name": ".md"
      },
      {
        "Code": 8275,
        "Blank": 697,
        "Comment": 0,
        "Name": ".go"
      },
      {
        "Code": 575,
        "Blank": 8,
        "Comment": 0,
        "Name": ".yaml"
      },
      {
        "Code": 98,
        "Blank": 19,
        "Comment": 0,
        "Name": ".mount"
      },
      {
        "Code": 31,
        "Blank": 7,
        "Comment": 0,
        "Name": ".service"
      },
      {
        "Code": 10,
        "Blank": 1,
        "Comment": 0,
        "Name": ".txt"
      },
      {
        "Code": 1192,
        "Blank": 158,
        "Comment": 0,
        "Name": ".sh"
      },
      {
        "Code": 16427,
        "Blank": 1723,
        "Comment": 0,
        "Name": "ALL"
      }
    ]
  }
}

说明

默认排除了隐藏文件及文件夹 使用魔法数识别二进制文件并排除

Thanks

感谢 JetBrains 公司 为本开源项目提供的免费正版 Intellij GoLand 的 License 支持。

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL