cgag / loc

Count lines of code quickly.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

.tf files are not counted

trahloff opened this issue · comments

OS: Windows 10
loc: 0.4.1

test.tf

resource "aws_s3_bucket" "b" {
  bucket = "my-tf-test-bucket"
  acl    = "private"

  tags = {
    Name        = "My bucket"
    Environment = "Dev"
  }
}

Expected Output: 1 File, 9 Lines, 1 Blank, 0 Comment, 8 Code

Output: 0 File, 0 Lines, 0 Blank, 0 Comment, 0 Code

image