do not use globs

This commit is contained in:
Zeke Sikelianos 2017-09-22 11:00:38 +09:00
parent 2bb26b30dc
commit d54cb307d5

26
.github/CODEOWNERS vendored
View file

@ -1,16 +1,20 @@
# https://help.github.com/articles/about-codeowners/ # Order is important. The LAST matching pattern has the MOST precedence.
# 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: # Everything that falls through the cracks:
* @electron/reviewers * @electron/reviewers
**browser_view** @electron/browserview # filename patterns
**notification** @electron/notifications *browser_view* @electron/browserview
**pdf** @electron/printing *notification* @electron/notifications
**printing** @electron/printing *pdf* @electron/printing
**updater** @electron/updater *printing* @electron/printing
*updater* @electron/updater
default_app/** @electron/docs # directories
docs/** @electron/docs /default_app/ @electron/docs
docs-translations/** @electron/i18n /docs/ @electron/docs
npm/** @electron/hubbers /docs-translations/ @electron/i18n
/npm/ @electron/hubbers