-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoptions.js
97 lines (89 loc) · 2.2 KB
/
options.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// This is a list of standard element attributes to ignore
// when applying the @angular-eslint/template/i18n rule
// that requires attributes to be tagged as localizable.
//
// New attributes can be added here that are for element
// configuration and not for display, where localizing
// the attribute value would result in broken functionality.
//
// In cases of attribute collisions, the rule supports
// CSS selector style element[attribute] ignore entries
// which can be used to scope attribute ignores to specific
// elements.
const ignoreAttributeSets = {
nimble: [
'action-menu-slot',
'activeid',
'appearance',
'appearance-variant',
'autocomplete',
'column-id',
'field-name',
'filter-mode',
'format',
'icon',
'id-field-name',
'key',
'key-type',
'nimbleRouterLink',
'orientation',
'queryParamsHandling',
'resize',
'selection-mode',
'severity',
'slot',
'sort-direction',
'theme'
],
systemlink: [
// sl-workspace-selector
'action',
// sl-table
'columnId',
'decimalDigits',
'fieldName',
'format',
'hrefFieldName',
'idFieldName',
'keyType',
'labelFieldName',
'selectionMode',
'slTableColumnId',
// sl-grid
'columnSizeMode',
'dataRowId',
'dataSourceFingerprint',
'gridId',
'loadColumnStateBehavior',
'parentDataField',
// sl-split-button
'appearanceVariant',
// sl-query-builder
'dropdownWidth',
// native element attributes used by sl components
'accept',
'aria-live',
],
jqx: [
// smart-table
'sortMode',
// smart-query-builder
'applyMode',
'fieldsMode'
],
material: [
'cdkDragPreviewContainer',
'floatLabel',
'fontIcon',
'fontSet',
'matColumnDef',
'matTooltipClass',
]
};
const ignoreAttributes = {
...ignoreAttributeSets,
all: Object.values(ignoreAttributeSets).flat()
};
module.exports = {
ignoreAttributes
};