.codeclimate.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # This is a sample .codeclimate.yml configured for Engine analysis on Code
  2. # Climate Platform. For an overview of the Code Climate Platform, see here:
  3. # http://docs.codeclimate.com/article/300-the-codeclimate-platform
  4. # Under the engines key, you can configure which engines will analyze your repo.
  5. # Each key is an engine name. For each value, you need to specify enabled: true
  6. # to enable the engine as well as any other engines-specific configuration.
  7. # For more details, see here:
  8. # http://docs.codeclimate.com/article/289-configuring-your-repository-via-codeclimate-yml#platform
  9. # For a list of all available engines, see here:
  10. # http://docs.codeclimate.com/article/296-engines-available-engines
  11. engines:
  12. # to turn on an engine, add it here and set enabled to `true`
  13. # to turn off an engine, set enabled to `false` or remove it
  14. rubocop:
  15. enabled: false
  16. golint:
  17. enabled: false
  18. gofmt:
  19. enabled: false
  20. eslint:
  21. enabled: true
  22. csslint:
  23. enabled: true
  24. # Engines can analyze files and report issues on them, but you can separately
  25. # decide which files will receive ratings based on those issues. This is
  26. # specified by path patterns under the ratings key.
  27. # For more details see here:
  28. # http://docs.codeclimate.com/article/289-configuring-your-repository-via-codeclimate-yml#platform
  29. # ratings:
  30. # paths:
  31. # - app/**
  32. # - lib/**
  33. # - "**.rb"
  34. # - "**.go"
  35. # You can globally exclude files from being analyzed by any engine using the
  36. # exclude_paths key.
  37. #exclude_paths:
  38. #- spec/**/*
  39. #- vendor/**/*