qc-cli 0.6.3

qc is designed to give you an instant breakdown of your codebase composition using Mmap and Parallel Directory Walking.
# data/languages.yml
Rust:
  type: programming
  color: "#dea584"
  extensions:
    - ".rs"
    - ".rs.in"

Python:
  type: programming
  color: "#3572A5"
  extensions:
    - ".py"
    - ".pyi"
  filenames:
    - "SConstruct"

C:
  type: programming
  color: "#555555"
  extensions:
    - ".c"
    - ".h"

C++:
  type: programming
  color: "#f34b7d"
  extensions:
    - ".cc"
    - ".cpp"
    - ".cxx"
    - ".c++"
    - ".hh"
    - ".hpp"
    - ".hxx"
    - ".h++"

Makefile:
  type: programming
  color: "#427819"
  extensions:
    - ".mak"
    - ".mk"
  filenames:
    - "Makefile"
    - "makefile"
    - "Gnumakefile"