cspell.config.yaml 687 B

123456789101112131415161718192021222324
  1. ---
  2. $schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
  3. version: '0.2'
  4. dictionaryDefinitions:
  5. - name: wormhole-dictionary
  6. path: './cspell-custom-words.txt'
  7. addWords: true
  8. dictionaries:
  9. - wormhole-dictionary
  10. ignorePaths:
  11. # go modules for the guardian node
  12. - '/pkg/mod/**'
  13. - '**/node_modules/**'
  14. - '**/requirements.txt'
  15. - '/cspell-custom-words.txt'
  16. # tilt extensions
  17. - '/tilt_modules/**'
  18. # build artifacts
  19. - '/clients/js/build/**'
  20. - '/wormchain/build/**'
  21. # cosmos* and cosmwasm* autogenerated
  22. - '/wormchain/ts-sdk/src/modules/cosm.*/**'
  23. # osmosis* autogenerated
  24. - '/wormchain/ts-sdk/src/modules/osmosis*/**'