123456789101112131415161718192021 |
- # Order is important. The LAST matching pattern has the MOST precedence.
- # gitignore style patterns are used, not globs.
- # https://help.github.com/articles/about-codeowners
- # https://git-scm.com/docs/gitignore
- # Everything that falls through the cracks:
- * @electron/reviewers
- # filename patterns
- *browser_view* @electron/browserview
- *notification* @electron/notifications
- *pdf* @electron/printing
- *printing* @electron/printing
- *updater* @electron/updater
- # directories
- /.github/ @electron/electrocats
- /default_app/ @electron/docs
- /docs/ @electron/docs
- /docs-translations/ @electron/i18n
- /npm/ @electron/electrocats
|