Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

126 řádky
2.1 KiB

  1. {
  2. "env": {
  3. "browser": true,
  4. "node": true,
  5. "es6": true
  6. },
  7. "extends": "eslint:recommended",
  8. "rules": {
  9. "indent": [
  10. "error",
  11. "tab",
  12. { "SwitchCase": 1 }
  13. ],
  14. "linebreak-style": [
  15. "error",
  16. "unix"
  17. ],
  18. "quotes": [
  19. "off"
  20. ],
  21. "semi": [
  22. "warn",
  23. "always"
  24. ],
  25. "camelcase": [
  26. "off"
  27. ],
  28. "no-unused-vars": [
  29. "warn"
  30. ],
  31. "no-redeclare": [
  32. "warn"
  33. ],
  34. "no-console": [
  35. "warn"
  36. ],
  37. "no-extra-boolean-cast": [
  38. "off"
  39. ],
  40. "no-control-regex": [
  41. "off"
  42. ]
  43. },
  44. "root": true,
  45. "globals": {
  46. "frappe": true,
  47. "$": true,
  48. "jQuery": true,
  49. "moment": true,
  50. "hljs": true,
  51. "Awesomplete": true,
  52. "CalHeatMap": true,
  53. "Sortable": true,
  54. "Showdown": true,
  55. "Taggle": true,
  56. "Gantt": true,
  57. "Slick": true,
  58. "PhotoSwipe": true,
  59. "PhotoSwipeUI_Default": true,
  60. "fluxify": true,
  61. "io": true,
  62. "c3": true,
  63. "__": true,
  64. "_p": true,
  65. "_f": true,
  66. "repl": true,
  67. "Class": true,
  68. "locals": true,
  69. "cint": true,
  70. "cstr": true,
  71. "cur_frm": true,
  72. "cur_dialog": true,
  73. "cur_page": true,
  74. "cur_list": true,
  75. "cur_tree": true,
  76. "msg_dialog": true,
  77. "is_null": true,
  78. "in_list": true,
  79. "has_common": true,
  80. "has_words": true,
  81. "validate_email": true,
  82. "get_number_format": true,
  83. "format_number": true,
  84. "format_currency": true,
  85. "comment_when": true,
  86. "replace_newlines": true,
  87. "open_url_post": true,
  88. "toTitle": true,
  89. "lstrip": true,
  90. "strip": true,
  91. "strip_html": true,
  92. "replace_all": true,
  93. "flt": true,
  94. "precision": true,
  95. "md5": true,
  96. "CREATE": true,
  97. "AMEND": true,
  98. "CANCEL": true,
  99. "copy_dict": true,
  100. "get_number_format_info": true,
  101. "print_table": true,
  102. "Layout": true,
  103. "web_form_settings": true,
  104. "$c": true,
  105. "$a": true,
  106. "$i": true,
  107. "$bg": true,
  108. "$y": true,
  109. "$c_obj": true,
  110. "refresh_many": true,
  111. "refresh_field": true,
  112. "toggle_field": true,
  113. "get_field_obj": true,
  114. "get_query_params": true,
  115. "unhide_field": true,
  116. "hide_field": true,
  117. "set_field_options": true,
  118. "getCookie": true,
  119. "getCookies": true,
  120. "get_url_arg": true,
  121. "QUnit": true,
  122. "Snap": true,
  123. "mina": true
  124. }
  125. }