github.com/hechain20/hechain@v0.0.0-20220316014945-b544036ba106/staticcheck.conf (about)

     1  # Copyright hechain All Rights Reserved.
     2  #
     3  # SPDX-License-Identifier: Apache-2.0
     4  
     5  # Using default configuration and adding U1000 and ST1005
     6  checks = [
     7    # defaults
     8    "all",
     9    "-ST1000",
    10    "-ST1003",
    11    "-ST1016",
    12    "-ST1020",
    13    "-ST1021",
    14    "-ST1022",
    15  
    16    # Fabric specific
    17    "-SA1019", # Deprecations
    18    "-ST1005", # Incorrectly formatted error string
    19    "-U1000",  # Type is unused
    20  ]
    21  
    22  dot_import_whitelist = [
    23    "github.com/onsi/gomega"
    24  ]