cgag / loc

Count lines of code quickly.
MIT License
2.29k stars 126 forks source link

.tf files are not counted #113

Open trahloff opened 5 years ago

trahloff commented 5 years ago

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

trahloff commented 5 years ago

@danielgrant, any idea?