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