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 450B

123456789101112131415161718192021222324252627
  1. root: true
  2. extends:
  3. - eslint:recommended
  4. parserOptions:
  5. ecmaVersion: 2015
  6. env:
  7. browser: true
  8. jquery: true
  9. es6: true
  10. globals:
  11. Clipboard: false
  12. CodeMirror: false
  13. emojify: false
  14. SimpleMDE: false
  15. Vue: false
  16. Dropzone: false
  17. u2fApi: false
  18. hljs: false
  19. rules:
  20. no-unused-vars: [error, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, ignoreRestSiblings: true}]
  21. prefer-const: [2, {destructuring: all}]
  22. no-var: [2]