Closed jhanley634 closed 3 weeks ago
This PR introduces a simple source lines of code (SLOC) counter script using Python. The implementation uses the typer
library for CLI handling and provides basic functionality to count the total number of lines in a given file.
classDiagram
class SlocCounter {
+count_sloc(in_file: Path)
}
class Path {
}
class Typer {
}
SlocCounter --> Path
SlocCounter --> Typer
note for SlocCounter "This class provides a method to count the number of lines in a file using the Typer library for CLI handling."
Change | Details | Files |
---|---|---|
Implementation of a basic SLOC counter script |
|
src/bboard/sloc/sloc.py |
Summary by Sourcery
New Features: