Ignore tool files

This commit is contained in:
Zachary Yedidia 2021-08-21 18:07:43 -04:00
parent 3a97ce820c
commit fe3186ba9d
9 changed files with 15 additions and 39 deletions

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (

View file

@ -1,38 +0,0 @@
package main
import (
"fmt"
"io/ioutil"
"strings"
"github.com/zyedidia/highlight"
)
func main() {
files, _ := ioutil.ReadDir(".")
hadErr := false
for _, f := range files {
if strings.HasSuffix(f.Name(), ".yaml") {
input, _ := ioutil.ReadFile(f.Name())
//fmt.Println("Checking file -> ", f.Name())
file, err := highlight.ParseFile(input)
if err != nil {
hadErr = true
fmt.Printf("Could not parse file -> %s:\n", f.Name())
fmt.Println(err)
continue
}
_, err1 := highlight.ParseDef(file, nil)
if err1 != nil {
hadErr = true
fmt.Printf("Could not parse input file using highlight.ParseDef(%s):\n", f.Name())
fmt.Println(err1)
continue
}
}
}
if !hadErr {
fmt.Println("No issues found!")
}
}

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (

View file

@ -1,3 +1,5 @@
//+build ignore
package main package main
import ( import (