style(common): enforce format on newly included files (#36940)
Historically files to be formatted were added to a listing (via matchers) to be included in formatting. Instead, this change begins efforts to instead include all files in format enforcement, relying instead on an opt out methodology. PR Close #36940
This commit is contained in:

committed by
Misko Hevery

parent
d3b5e5696f
commit
1bc807c81a
@ -10,55 +10,57 @@
|
||||
// See angular/tools/gulp-tasks/cldr/extract.js
|
||||
|
||||
(function(global) {
|
||||
global.ng = global.ng || {};
|
||||
global.ng.common = global.ng.common || {};
|
||||
global.ng.common.locales = global.ng.common.locales || {};
|
||||
const u = undefined;
|
||||
function plural(n) { return 5; }
|
||||
global.ng.common.locales['root'] = [
|
||||
'root',
|
||||
[['a', 'p'], ['AM', 'PM'], u],
|
||||
[['AM', 'PM'], u, u],
|
||||
global.ng = global.ng || {};
|
||||
global.ng.common = global.ng.common || {};
|
||||
global.ng.common.locales = global.ng.common.locales || {};
|
||||
const u = undefined;
|
||||
function plural(n) {
|
||||
return 5;
|
||||
}
|
||||
global.ng.common.locales['root'] = [
|
||||
'root',
|
||||
[['a', 'p'], ['AM', 'PM'], u],
|
||||
[['AM', 'PM'], u, u],
|
||||
[
|
||||
['S', 'M', 'T', 'W', 'T', 'F', 'S'], ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
||||
['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
||||
['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']
|
||||
],
|
||||
u,
|
||||
[
|
||||
['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
|
||||
['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
||||
[
|
||||
['S', 'M', 'T', 'W', 'T', 'F', 'S'], ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
||||
['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
||||
['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']
|
||||
],
|
||||
u,
|
||||
[
|
||||
['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
|
||||
['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
||||
[
|
||||
'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September',
|
||||
'October', 'November', 'December'
|
||||
]
|
||||
],
|
||||
u,
|
||||
[['B', 'A'], ['BC', 'AD'], ['Before Christ', 'Anno Domini']],
|
||||
0,
|
||||
[6, 0],
|
||||
['M/d/yy', 'MMM d, y', 'MMMM d, y', 'EEEE, MMMM d, y'],
|
||||
['h:mm a', 'h:mm:ss a', 'h:mm:ss a z', 'h:mm:ss a zzzz'],
|
||||
['{1}, {0}', u, '{1} \'at\' {0}', u],
|
||||
['.', ',', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
|
||||
['#,##0.###', '#,##0%', '¤#,##0.00', '#E0'],
|
||||
'USD',
|
||||
'$',
|
||||
'US Dollar',
|
||||
{},
|
||||
'ltr',
|
||||
plural,
|
||||
[
|
||||
[
|
||||
['mi', 'n', 'in the morning', 'in the afternoon', 'in the evening', 'at night'],
|
||||
['midnight', 'noon', 'in the morning', 'in the afternoon', 'in the evening', 'at night'], u
|
||||
],
|
||||
[['midnight', 'noon', 'morning', 'afternoon', 'evening', 'night'], u, u],
|
||||
[
|
||||
'00:00', '12:00', ['06:00', '12:00'], ['12:00', '18:00'], ['18:00', '21:00'],
|
||||
['21:00', '06:00']
|
||||
]
|
||||
'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September',
|
||||
'October', 'November', 'December'
|
||||
]
|
||||
];
|
||||
],
|
||||
u,
|
||||
[['B', 'A'], ['BC', 'AD'], ['Before Christ', 'Anno Domini']],
|
||||
0,
|
||||
[6, 0],
|
||||
['M/d/yy', 'MMM d, y', 'MMMM d, y', 'EEEE, MMMM d, y'],
|
||||
['h:mm a', 'h:mm:ss a', 'h:mm:ss a z', 'h:mm:ss a zzzz'],
|
||||
['{1}, {0}', u, '{1} \'at\' {0}', u],
|
||||
['.', ',', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
|
||||
['#,##0.###', '#,##0%', '¤#,##0.00', '#E0'],
|
||||
'USD',
|
||||
'$',
|
||||
'US Dollar',
|
||||
{},
|
||||
'ltr',
|
||||
plural,
|
||||
[
|
||||
[
|
||||
['mi', 'n', 'in the morning', 'in the afternoon', 'in the evening', 'at night'],
|
||||
['midnight', 'noon', 'in the morning', 'in the afternoon', 'in the evening', 'at night'], u
|
||||
],
|
||||
[['midnight', 'noon', 'morning', 'afternoon', 'evening', 'night'], u, u],
|
||||
[
|
||||
'00:00', '12:00', ['06:00', '12:00'], ['12:00', '18:00'], ['18:00', '21:00'],
|
||||
['21:00', '06:00']
|
||||
]
|
||||
]
|
||||
];
|
||||
})(typeof globalThis !== 'undefined' && globalThis || typeof global !== 'undefined' && global ||
|
||||
typeof window !== 'undefined' && window);
|
||||
|
Reference in New Issue
Block a user