You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc 994B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. root: true
  2. extends:
  3. - eslint-config-airbnb-base
  4. - eslint:recommended
  5. parserOptions:
  6. ecmaVersion: 2020
  7. env:
  8. browser: true
  9. es6: true
  10. jquery: true
  11. node: true
  12. globals:
  13. Clipboard: false
  14. CodeMirror: false
  15. Dropzone: false
  16. emojify: false
  17. hljs: false
  18. SimpleMDE: false
  19. u2fApi: false
  20. Vue: false
  21. rules:
  22. camelcase: [0]
  23. comma-dangle: [2, only-multiline]
  24. consistent-return: [0]
  25. default-case: [0]
  26. func-names: [0]
  27. max-len: [0]
  28. newline-per-chained-call: [0]
  29. arrow-body-style: [0]
  30. no-alert: [0]
  31. no-continue: [0]
  32. no-mixed-operators: [0]
  33. no-multi-assign: [0]
  34. no-new: [0]
  35. no-param-reassign: [0]
  36. no-plusplus: [0]
  37. no-restricted-syntax: [0]
  38. no-shadow: [0]
  39. no-unused-vars: [2, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, ignoreRestSiblings: true}]
  40. no-use-before-define: [0]
  41. no-var: [2]
  42. one-var-declaration-per-line: [0]
  43. one-var: [0]
  44. prefer-const: [2, {destructuring: all}]
  45. prefer-destructuring: [0]
  46. radix: [2, as-needed]