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

12345678910111213141516171819202122232425262728
  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. node: true
  11. globals:
  12. Clipboard: false
  13. CodeMirror: false
  14. emojify: false
  15. SimpleMDE: false
  16. Vue: false
  17. Dropzone: false
  18. u2fApi: false
  19. hljs: false
  20. rules:
  21. no-unused-vars: [error, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, ignoreRestSiblings: true}]
  22. prefer-const: [2, {destructuring: all}]
  23. no-var: [2]