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 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. root: true
  2. extends:
  3. - eslint-config-airbnb-base
  4. - eslint:recommended
  5. ignorePatterns:
  6. - /web_src/js/vendor
  7. parserOptions:
  8. ecmaVersion: 2020
  9. env:
  10. browser: true
  11. es6: true
  12. jquery: true
  13. node: true
  14. globals:
  15. __webpack_public_path__: true
  16. CodeMirror: false
  17. Dropzone: false
  18. SimpleMDE: false
  19. u2fApi: false
  20. Tribute: false
  21. overrides:
  22. - files: ["web_src/**/*.worker.js"]
  23. env:
  24. worker: true
  25. rules:
  26. no-restricted-globals: [0]
  27. rules:
  28. arrow-body-style: [0]
  29. arrow-parens: [2, always]
  30. camelcase: [0]
  31. comma-dangle: [2, only-multiline]
  32. consistent-return: [0]
  33. default-case: [0]
  34. func-names: [0]
  35. import/extensions: [2, always, {ignorePackages: true}]
  36. import/prefer-default-export: [0]
  37. max-len: [0]
  38. multiline-comment-style: [2, separate-lines]
  39. newline-per-chained-call: [0]
  40. no-alert: [0]
  41. no-cond-assign: [2, except-parens]
  42. no-console: [1, {allow: [info, warn, error]}]
  43. no-continue: [0]
  44. no-eq-null: [2]
  45. no-mixed-operators: [0]
  46. no-multi-assign: [0]
  47. no-new: [0]
  48. no-param-reassign: [0]
  49. no-plusplus: [0]
  50. no-restricted-syntax: [0]
  51. no-return-await: [0]
  52. no-shadow: [0]
  53. no-unused-vars: [2, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, ignoreRestSiblings: true}]
  54. no-use-before-define: [0]
  55. no-var: [2]
  56. object-curly-newline: [0]
  57. object-curly-spacing: [2, never]
  58. one-var-declaration-per-line: [0]
  59. one-var: [0]
  60. operator-linebreak: [2, after]
  61. prefer-const: [2, {destructuring: all}]
  62. prefer-destructuring: [0]
  63. quotes: [2, single, {avoidEscape: true, allowTemplateLiterals: true}]
  64. radix: [2, as-needed]
  65. semi: [2, always, {omitLastInOneLineBlock: true}]