.eslintignore 975 B

1234567891011121314151617181920212223242526
  1. ################################################
  2. # ╔═╗╔═╗╦ ╦╔╗╔╔╦╗┬┌─┐┌┐┌┌─┐┬─┐┌─┐
  3. # ║╣ ╚═╗║ ║║║║ ║ ││ ┬││││ │├┬┘├┤
  4. # o╚═╝╚═╝╩═╝╩╝╚╝ ╩ ┴└─┘┘└┘└─┘┴└─└─┘
  5. #
  6. # > Glob patterns indicating files/directories
  7. # > to exclude when checking code quality with
  8. # > eslint.
  9. #
  10. # This file (`.eslintignore`) is only relevant
  11. # if you are using eslint.
  12. #
  13. # It exists to signify to eslint that certain
  14. # files and/or directories should be ignored for
  15. # the purposes of linting -- e.g. because they
  16. # are already minified, or external dependencies,
  17. # contain inline JavaScript within an HTML template,
  18. # etc.
  19. #
  20. # Modify/extend/prune to fit your needs!
  21. #
  22. ################################################
  23. assets/dependencies/**/*.js
  24. views/**/*.ejs // (but see https://github.com/roadhump/SublimeLinter-eslint/issues/87)