coffeelint.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "indentation": {
  3. "level": "error",
  4. "value": 4
  5. },
  6. "no_tabs": {
  7. "level": "error"
  8. },
  9. "no_trailing_whitespace": {
  10. "level": "error",
  11. "allowed_in_comments": false,
  12. "allowed_in_empty_lines": false
  13. },
  14. "max_line_length": {
  15. "level": "warn",
  16. "value": 100,
  17. "limitComments": true
  18. },
  19. "line_endings": {
  20. "level": "ignore",
  21. "value": "unix"
  22. },
  23. "camel_case_classes": {
  24. "level": "error"
  25. },
  26. "no_implicit_braces": {
  27. "level": "ignore",
  28. "strict": true
  29. },
  30. "no_plusplus": {
  31. "level": "ignore"
  32. },
  33. "no_throwing_strings": {
  34. "level": "error"
  35. },
  36. "no_interpolation_in_single_quotes": {
  37. "level": "error"
  38. },
  39. "cyclomatic_complexity": {
  40. "level": "ignore",
  41. "value": 10
  42. },
  43. "newlines_after_classes": {
  44. "level": "warn",
  45. "value": 2
  46. },
  47. "duplicate_key": {
  48. "level": "error"
  49. },
  50. "empty_constructor_needs_parens": {
  51. "level": "ignore"
  52. },
  53. "non_empty_constructor_needs_parens": {
  54. "level": "ignore"
  55. },
  56. "missing_fat_arrows": {
  57. "level": "ignore",
  58. "is_strict": false
  59. },
  60. "space_operators": {
  61. "level": "warn"
  62. },
  63. "eol_last": {
  64. "level": "ignore"
  65. }
  66. }