lint_ignore_dirs.py raw

   1  #!/usr/bin/env python3
   2  #
   3  # Copyright (c) 2024-present The Bitcoin Core developers
   4  # Distributed under the MIT software license, see the accompanying
   5  # file COPYING or https://opensource.org/license/mit.
   6  
   7  SHARED_EXCLUDED_SUBTREES = ["src/leveldb/",
   8                   "src/crc32c/",
   9                   "src/secp256k1/",
  10                   "src/minisketch/",
  11                   "src/ipc/libmultiprocess/",
  12                   "src/crypto/ctaes/",
  13                  ]
  14