.arclint 448 B

123456789101112131415161718192021222324252627
  1. {
  2. "exclude": "(contrib|crypto)",
  3. "linters": {
  4. "python": {
  5. "type": "pep8",
  6. "include": "(\\.py$)"
  7. },
  8. "spelling": {
  9. "type": "spelling"
  10. },
  11. "chmod": {
  12. "type": "chmod",
  13. "exclude": "(/tests/)"
  14. },
  15. "merge-conflict": {
  16. "type": "merge-conflict"
  17. },
  18. "filename": {
  19. "type": "filename"
  20. },
  21. "json": {
  22. "type": "json",
  23. "include": "(\\.arclint|\\.json$)"
  24. }
  25. }
  26. }