refactor: move negative glob patterns of files to format close to their positive counterparts (#31295)

This makes it easier to identify which files in directory will be
included and which will be ignored.

PR Close #31295
This commit is contained in:
George Kalpakas 2019-06-26 21:19:42 +03:00 committed by Kara Erickson
parent 8503901746
commit 279e74603e

View File

@ -11,22 +11,22 @@ const {I18N_FOLDER, I18N_DATA_FOLDER} = require('./cldr/extract');
// clang-format entry points // clang-format entry points
const srcsToFmt = [ const srcsToFmt = [
'packages/**/*.{js,ts}', 'packages/**/*.{js,ts}',
`!${I18N_DATA_FOLDER}/**/*.{js,ts}`,
`!${I18N_FOLDER}/available_locales.ts`,
`!${I18N_FOLDER}/currencies.ts`,
`!${I18N_FOLDER}/locale_en.ts`,
'modules/benchmarks/**/*.{js,ts}', 'modules/benchmarks/**/*.{js,ts}',
'modules/e2e_util/**/*.{js,ts}', 'modules/e2e_util/**/*.{js,ts}',
'modules/playground/**/*.{js,ts}', 'modules/playground/**/*.{js,ts}',
'tools/**/*.{js,ts}', 'tools/**/*.{js,ts}',
'!tools/gulp-tasks/cldr/extract.js',
'!tools/public_api_guard/**/*.d.ts', '!tools/public_api_guard/**/*.d.ts',
'!tools/ts-api-guardian/test/fixtures/**',
'./*.{js,ts}', './*.{js,ts}',
'!**/node_modules/**', '!**/node_modules/**',
'!**/dist/**', '!**/dist/**',
'!**/built/**', '!**/built/**',
'!shims_for_IE.js', '!shims_for_IE.js',
`!${I18N_DATA_FOLDER}/**/*.{js,ts}`,
`!${I18N_FOLDER}/available_locales.ts`,
`!${I18N_FOLDER}/currencies.ts`,
`!${I18N_FOLDER}/locale_en.ts`,
'!tools/gulp-tasks/cldr/extract.js',
'!tools/ts-api-guardian/test/fixtures/**',
]; ];
/** /**