github.com/exercism/configlet@v3.9.3-0.20200318193232-c70be6269e71+incompatible/doc.go (about)

     1  /*
     2  Command configlet verifies Exercism's track configuration.
     3  
     4  Each track has a script that downloads the binary to run on Travis CI.
     5  
     6  See http://exercism.io for more information about the project.
     7  
     8  Compile the CLI:
     9  
    10      $ go build -o out/configlet
    11  
    12  Run the lint command:
    13  
    14      $ path/to/configlet lint path/to/track
    15  
    16  Cross-compile using the build script:
    17  
    18      $ bin/build
    19  
    20  To test the tool, use the fixture files:
    21  
    22      $ go build -o out/configlet
    23      $ out/configlet lint fixtures/numbers
    24  
    25  The command should exit with status 1, and output a list of issues.
    26  */
    27  package main