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

12345678910111213141516171819202122232425
  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}]