...

Text file src/cuelang.org/go/.gitignore

Documentation: cuelang.org/go

     1# Add no patterns to .gitignore except for files generated by the build.
     2cmd/cue/cue
     3**/*.test
     4/dist
     5/.unity-bin
     6**/__debug_bin*
     7**/.DS_Store
     8**/*.exe
     9**/.debug
    10
    11# We use test module paths like mod.test or externalmod.test.
    12# Don't exclude those as if they were test binaries.
    13!**/*mod.test
    14
    15# Ignore generated credentials from google-github-actions/auth,
    16# a GitHub Actions step used in CI for the tests in internal/_e2e.
    17# Note that CI requires a clean git repo when it finishes,
    18# so we don't want it to think the credentials file is untracked.
    19gha-creds-*.json

View as plain text