@markuplint/rules 3.0.0-canary.3 → 3.0.0-dev.177

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/README.md +1 -1
  2. package/lib/attr-check.d.ts +20 -8
  3. package/lib/attr-check.js +31 -22
  4. package/lib/attr-duplication/index.d.ts +3 -1
  5. package/lib/attr-duplication/index.js +2 -1
  6. package/lib/attr-value-quotes/index.d.ts +2 -2
  7. package/lib/case-sensitive-attr-name/index.d.ts +1 -1
  8. package/lib/case-sensitive-tag-name/index.d.ts +1 -1
  9. package/lib/character-reference/index.d.ts +1 -1
  10. package/lib/class-naming/index.d.ts +1 -1
  11. package/lib/class-naming/index.js +2 -4
  12. package/lib/create-message.d.ts +13 -2
  13. package/lib/create-message.js +4 -3
  14. package/lib/debug.js +1 -1
  15. package/lib/deprecated-attr/index.d.ts +3 -1
  16. package/lib/deprecated-element/index.d.ts +3 -1
  17. package/lib/deprecated-element/index.js +2 -2
  18. package/lib/disallowed-element/index.d.ts +1 -1
  19. package/lib/doctype/index.d.ts +2 -2
  20. package/lib/end-tag/index.d.ts +1 -1
  21. package/lib/helpers.d.ts +37 -22
  22. package/lib/helpers.js +27 -14
  23. package/lib/id-duplication/index.d.ts +3 -1
  24. package/lib/index.d.ts +243 -3
  25. package/lib/index.js +6 -1
  26. package/lib/ineffective-attr/index.d.ts +3 -1
  27. package/lib/ineffective-attr/index.js +2 -5
  28. package/lib/invalid-attr/index.d.ts +39 -12
  29. package/lib/invalid-attr/index.js +153 -27
  30. package/lib/label-has-control/index.d.ts +3 -1
  31. package/lib/landmark-roles/index.d.ts +3 -3
  32. package/lib/landmark-roles/index.js +9 -5
  33. package/lib/no-boolean-attr-value/index.d.ts +3 -1
  34. package/lib/no-default-value/index.d.ts +3 -1
  35. package/lib/no-empty-palpable-content/index.d.ts +3 -3
  36. package/lib/no-empty-palpable-content/index.js +11 -3
  37. package/lib/no-hard-code-id/index.d.ts +3 -1
  38. package/lib/no-refer-to-non-existent-id/index.d.ts +9 -4
  39. package/lib/no-refer-to-non-existent-id/index.js +65 -5
  40. package/lib/no-use-event-handler-attr/index.d.ts +2 -2
  41. package/lib/no-use-event-handler-attr/index.js +4 -4
  42. package/lib/permitted-contents/choice.d.ts +8 -1
  43. package/lib/permitted-contents/choice.js +37 -2
  44. package/lib/permitted-contents/complex-branch.d.ts +8 -1
  45. package/lib/permitted-contents/complex-branch.js +4 -2
  46. package/lib/permitted-contents/content-model.d.ts +1 -1
  47. package/lib/permitted-contents/content-model.js +7 -3
  48. package/lib/permitted-contents/count-pattern.d.ts +18 -2
  49. package/lib/permitted-contents/count-pattern.js +71 -64
  50. package/lib/permitted-contents/debug.browser.d.ts +30 -0
  51. package/lib/permitted-contents/debug.browser.js +14 -0
  52. package/lib/permitted-contents/debug.d.ts +2 -1
  53. package/lib/permitted-contents/debug.js +9 -1
  54. package/lib/permitted-contents/index.d.ts +1 -1
  55. package/lib/permitted-contents/index.js +12 -15
  56. package/lib/permitted-contents/matches-selector.d.ts +7 -2
  57. package/lib/permitted-contents/matches-selector.js +8 -6
  58. package/lib/permitted-contents/order.d.ts +8 -1
  59. package/lib/permitted-contents/order.js +25 -15
  60. package/lib/permitted-contents/recursive-branch.d.ts +8 -1
  61. package/lib/permitted-contents/recursive-branch.js +5 -3
  62. package/lib/permitted-contents/represent-transparent-nodes.d.ts +7 -3
  63. package/lib/permitted-contents/represent-transparent-nodes.js +4 -5
  64. package/lib/permitted-contents/start.d.ts +7 -1
  65. package/lib/permitted-contents/start.js +5 -3
  66. package/lib/permitted-contents/transparent.d.ts +2 -2
  67. package/lib/permitted-contents/transparent.js +11 -14
  68. package/lib/permitted-contents/types.d.ts +35 -28
  69. package/lib/permitted-contents/utils.d.ts +96 -28
  70. package/lib/permitted-contents/utils.js +135 -17
  71. package/lib/placeholder-label-option/index.d.ts +2 -0
  72. package/lib/placeholder-label-option/index.js +88 -0
  73. package/lib/require-accessible-name/index.d.ts +2 -2
  74. package/lib/require-accessible-name/index.js +5 -5
  75. package/lib/require-datetime/index.d.ts +6 -0
  76. package/lib/require-datetime/index.js +34 -0
  77. package/lib/require-datetime/types.d.ts +10 -0
  78. package/lib/require-datetime/types.js +2 -0
  79. package/lib/require-datetime/utils.d.ts +11 -0
  80. package/lib/require-datetime/utils.js +137 -0
  81. package/lib/required-attr/index.d.ts +3 -3
  82. package/lib/required-attr/index.js +19 -16
  83. package/lib/required-element/index.d.ts +2 -2
  84. package/lib/required-element/index.js +3 -2
  85. package/lib/required-h1/index.d.ts +3 -3
  86. package/lib/required-h1/index.js +4 -3
  87. package/lib/use-list/index.d.ts +3 -3
  88. package/lib/use-list/index.js +7 -5
  89. package/lib/wai-aria/checkings/_.d.ts +15 -0
  90. package/lib/wai-aria/checkings/_.js +27 -0
  91. package/lib/wai-aria/checkings/abstract-role.js +1 -1
  92. package/lib/wai-aria/checkings/default-value.d.ts +7 -3
  93. package/lib/wai-aria/checkings/deprecated-props.d.ts +8 -4
  94. package/lib/wai-aria/checkings/disallowed-prop.d.ts +8 -4
  95. package/lib/wai-aria/checkings/disallowed-prop.js +27 -3
  96. package/lib/wai-aria/checkings/implicit-props.d.ts +8 -4
  97. package/lib/wai-aria/checkings/implicit-props.js +3 -2
  98. package/lib/wai-aria/checkings/implicit-role.js +1 -1
  99. package/lib/wai-aria/checkings/interaction-in-hidden.js +3 -1
  100. package/lib/wai-aria/checkings/no-global-prop.d.ts +7 -3
  101. package/lib/wai-aria/checkings/non-existent-role.js +1 -1
  102. package/lib/wai-aria/checkings/permitted-roles.js +1 -1
  103. package/lib/wai-aria/checkings/presentational-children.js +4 -2
  104. package/lib/wai-aria/checkings/required-owned-elements.d.ts +7 -3
  105. package/lib/wai-aria/checkings/required-owned-elements.js +28 -12
  106. package/lib/wai-aria/checkings/required-prop copy.d.ts +15 -0
  107. package/lib/wai-aria/checkings/required-prop copy.js +27 -0
  108. package/lib/wai-aria/checkings/required-prop.d.ts +12 -6
  109. package/lib/wai-aria/checkings/unadopted-explicit-roles.d.ts +15 -0
  110. package/lib/wai-aria/checkings/unadopted-explicit-roles.js +17 -0
  111. package/lib/wai-aria/checkings/value.d.ts +15 -6
  112. package/lib/wai-aria/checkings/value.js +3 -1
  113. package/lib/wai-aria/index.d.ts +1 -1
  114. package/lib/wai-aria/index.js +13 -12
  115. package/lib/wai-aria/types.d.ts +10 -10
  116. package/lib/xxx/index.d.ts +2 -0
  117. package/lib/xxx/index.js +32 -0
  118. package/package.json +16 -11
  119. package/schema.json +6 -0
  120. package/test/attr-check.spec.js +77 -0
  121. package/test/attr-duplication/index.spec.js +159 -0
  122. package/test/attr-value-quotes/index.spec.js +133 -0
  123. package/test/case-sensitive-attr-name/index.spec.js +65 -0
  124. package/test/case-sensitive-tag-name/index.spec.js +80 -0
  125. package/test/character-reference/index.spec.js +57 -0
  126. package/test/class-naming/index.spec.js +470 -0
  127. package/test/create-message.spec.js +497 -0
  128. package/test/deprecated-attr/index.spec.js +48 -0
  129. package/test/deprecated-element/index.spec.js +48 -0
  130. package/test/disallowed-element/index.spec.js +90 -0
  131. package/test/doctype/index.spec.js +50 -0
  132. package/test/end-tag/index.spec.js +162 -0
  133. package/test/id-duplication/index.spec.js +47 -0
  134. package/test/ineffective-attr/index.spec.js +31 -0
  135. package/test/invalid-attr/index.spec.js +1632 -0
  136. package/test/label-has-control/index.spec.js +29 -0
  137. package/test/landmark-roles/index.spec.js +187 -0
  138. package/test/no-boolean-attr-value/index.spec.js +41 -0
  139. package/test/no-default-value/index.spec.js +74 -0
  140. package/test/no-empty-palpable-content/index.spec.js +115 -0
  141. package/test/no-hard-code-id/index.spec.js +100 -0
  142. package/test/no-refer-to-non-existent-id/index.spec.js +254 -0
  143. package/test/no-use-event-handler-attr/index.spec.js +57 -0
  144. package/test/permitted-contents/choice.spec.js +174 -0
  145. package/test/permitted-contents/count-pattern.spec.js +308 -0
  146. package/test/permitted-contents/index.spec.js +1371 -0
  147. package/test/permitted-contents/matches-selector.spec.js +59 -0
  148. package/test/permitted-contents/order.spec.js +351 -0
  149. package/test/permitted-contents/recursive-branch.spec.js +41 -0
  150. package/test/permitted-contents/represent-transparent-nodes.spec.js +24 -0
  151. package/test/permitted-contents/start.spec.js +67 -0
  152. package/test/placeholder-label-option/index.spec.js +113 -0
  153. package/test/require-accessible-name/index.spec.js +446 -0
  154. package/test/require-datetime/index.spec.js +54 -0
  155. package/test/require-datetime/utils.spec.js +52 -0
  156. package/test/required-attr/index.spec.js +414 -0
  157. package/test/required-element/index.spec.js +188 -0
  158. package/test/required-h1/index.spec.js +69 -0
  159. package/test/use-list/index.spec.js +109 -0
  160. package/test/wai-aria/checkings/value.spec.js +33 -0
  161. package/test/wai-aria/index.spec.js +1173 -0
  162. package/tsconfig.test.json +0 -3
  163. package/tsconfig.tsbuildinfo +0 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
  <details>
16
16
  <summary>If you are installing purposely, how below:</summary>
17
17
 
18
- ```sh
18
+ ```shell
19
19
  $ npm install -D @markuplint/rules
20
20
 
21
21
  $ yarn add -D @markuplint/rules
@@ -1,14 +1,15 @@
1
1
  import type { Translator } from '@markuplint/i18n';
2
2
  import type { Attribute as AttrSpec, AttributeType } from '@markuplint/ml-spec';
3
+ import type { ReadonlyDeep } from 'type-fest';
3
4
  type Invalid = {
4
- invalidType: 'non-existent' | 'invalid-value';
5
- message: string;
6
- loc?: Loc;
5
+ invalidType: 'non-existent' | 'invalid-value' | 'disallowed-attr';
6
+ message: string;
7
+ loc?: Loc;
7
8
  };
8
9
  type Loc = {
9
- raw: string;
10
- line: number;
11
- col: number;
10
+ raw: string;
11
+ line: number;
12
+ col: number;
12
13
  };
13
14
  /**
14
15
  * Use in rules `invalid-attr` and `wai-aria`
@@ -18,6 +19,17 @@ type Loc = {
18
19
  * @param isCustomRule
19
20
  * @param spec
20
21
  */
21
- export declare function attrCheck(t: Translator, name: string, value: string, isCustomRule: boolean, spec?: AttrSpec): Invalid | false;
22
- export declare function valueCheck(t: Translator, name: string, value: string, type: AttributeType): string | [string, Loc] | false;
22
+ export declare function attrCheck(
23
+ t: Translator,
24
+ name: string,
25
+ value: string,
26
+ isCustomRule: boolean,
27
+ spec?: AttrSpec,
28
+ ): Invalid | false;
29
+ export declare function valueCheck(
30
+ t: Translator,
31
+ name: string,
32
+ value: string,
33
+ type: ReadonlyDeep<AttributeType>,
34
+ ): [string, Loc] | false;
23
35
  export {};
package/lib/attr-check.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.valueCheck = exports.attrCheck = void 0;
4
+ const shared_1 = require("@markuplint/shared");
4
5
  const types_1 = require("@markuplint/types");
5
6
  const create_message_1 = require("./create-message");
6
7
  const debug_1 = require("./debug");
@@ -22,6 +23,12 @@ function attrCheck(t, name, value, isCustomRule, spec) {
22
23
  // Ignore checking because ARIA attributes are check on another rule
23
24
  return false;
24
25
  }
26
+ // @see https://www.w3.org/TR/adapt/
27
+ // It is an experimental
28
+ if (/^adapt-.+$/.test(name)) {
29
+ // Ignore checking because "adapt-*" attribute is any type
30
+ return false;
31
+ }
25
32
  }
26
33
  // Existence
27
34
  if (!spec) {
@@ -41,35 +48,37 @@ function attrCheck(t, name, value, isCustomRule, spec) {
41
48
  t('Did you mean "{0*}"?', spec.name),
42
49
  };
43
50
  }
44
- const types = Array.isArray(spec.type) ? spec.type : [spec.type];
51
+ if (spec.noUse) {
52
+ return {
53
+ invalidType: 'disallowed-attr',
54
+ message: t('{0} is {1:c}', t('the "{0*}" {1}', name, 'attribute'), 'disallowed'),
55
+ };
56
+ }
57
+ const types = (0, shared_1.toNonNullableArrayFromItemOrArray)(spec.type);
45
58
  const invalidList = types.map(type => {
46
- if (!type) {
47
- (0, debug_1.log)('attrCheck: %o', arguments);
48
- throw new Error('type is empty in spec');
49
- }
50
59
  const invalid = valueCheck(t, name, value, type);
51
- if (invalid) {
52
- if (typeof invalid === 'string') {
53
- return {
54
- invalidType: 'invalid-value',
55
- message: invalid,
56
- };
57
- }
58
- else {
59
- return {
60
- invalidType: 'invalid-value',
61
- message: invalid[0],
62
- loc: invalid[1],
63
- };
64
- }
60
+ if (invalid === false) {
61
+ return false;
62
+ }
63
+ if (typeof invalid === 'string') {
64
+ return {
65
+ invalidType: 'invalid-value',
66
+ message: invalid,
67
+ };
68
+ }
69
+ else {
70
+ return {
71
+ invalidType: 'invalid-value',
72
+ message: invalid[0],
73
+ loc: invalid[1],
74
+ };
65
75
  }
66
- return false;
67
76
  });
68
- if (invalidList.some(i => !i)) {
77
+ if (invalidList.some(i => i === false)) {
69
78
  return false;
70
79
  }
71
80
  const invalid = invalidList.find(i => i);
72
- return invalid || false;
81
+ return invalid !== null && invalid !== void 0 ? invalid : false;
73
82
  }
74
83
  exports.attrCheck = attrCheck;
75
84
  function valueCheck(t, name, value, type) {
@@ -1,2 +1,4 @@
1
- declare const _default: import("@markuplint/ml-core").RuleSeed<import("@markuplint/ml-core").RuleConfigValue, null>;
1
+ declare const _default: Readonly<
2
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
3
+ >;
2
4
  export default _default;
@@ -5,6 +5,7 @@ exports.default = (0, ml_core_1.createRule)({
5
5
  async verify({ document, report, t }) {
6
6
  const message = t('{0} is {1:c}', t('the {0}', 'attribute name'), 'duplicated');
7
7
  await document.walkOn('Element', node => {
8
+ var _a;
8
9
  const attrNameStack = [];
9
10
  for (const attr of node.getAttributeTokens()) {
10
11
  if (attr.isDuplicatable) {
@@ -13,7 +14,7 @@ exports.default = (0, ml_core_1.createRule)({
13
14
  const attrName = attr.name;
14
15
  const name = node.elementType === 'html' ? attrName.toLowerCase() : attrName;
15
16
  if (attrNameStack.includes(name)) {
16
- const scope = attr.nameNode || attr;
17
+ const scope = (_a = attr.nameNode) !== null && _a !== void 0 ? _a : attr;
17
18
  report({
18
19
  scope: {
19
20
  rule: node.rule,
@@ -1,7 +1,7 @@
1
1
  export type Type = 'double' | 'single';
2
2
  export type Quote = '"' | "'";
3
3
  export type QuoteMap = {
4
- [P in Type]: Quote;
4
+ [P in Type]: Quote;
5
5
  };
6
- declare const _default: import("@markuplint/ml-core").RuleSeed<Type, null>;
6
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<Type, undefined>>;
7
7
  export default _default;
@@ -1,3 +1,3 @@
1
1
  export type Value = 'lower' | 'upper';
2
- declare const _default: import("@markuplint/ml-core").RuleSeed<Value, null>;
2
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<Value, undefined>>;
3
3
  export default _default;
@@ -1,3 +1,3 @@
1
1
  export type Value = 'lower' | 'upper';
2
- declare const _default: import("@markuplint/ml-core").RuleSeed<Value, null>;
2
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<Value, undefined>>;
3
3
  export default _default;
@@ -1,3 +1,3 @@
1
1
  import type { RuleConfigValue } from '@markuplint/ml-config';
2
- declare const _default: import("@markuplint/ml-core").RuleSeed<RuleConfigValue, null>;
2
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<RuleConfigValue, undefined>>;
3
3
  export default _default;
@@ -1,3 +1,3 @@
1
1
  export type Value = string | string[] | null;
2
- declare const _default: import("@markuplint/ml-core").RuleSeed<Value, null>;
2
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<Value, undefined>>;
3
3
  export default _default;
@@ -1,16 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const ml_core_1 = require("@markuplint/ml-core");
4
+ const shared_1 = require("@markuplint/shared");
4
5
  const helpers_1 = require("../helpers");
5
6
  exports.default = (0, ml_core_1.createRule)({
6
7
  defaultSeverity: 'warning',
7
8
  defaultValue: null,
8
9
  async verify({ document, report, t }) {
9
10
  await document.walkOn('Element', el => {
10
- if (!el.rule.value) {
11
- return;
12
- }
13
- const classPatterns = Array.isArray(el.rule.value) ? el.rule.value : [el.rule.value];
11
+ const classPatterns = (0, shared_1.toNoEmptyStringArrayFromStringOrArray)(el.rule.value).filter(className => className && typeof className === 'string');
14
12
  const attrs = el.getAttributeToken('class');
15
13
  for (const attr of attrs) {
16
14
  if (attr.isDynamicValue) {
@@ -1,5 +1,16 @@
1
1
  import type { Translator } from '@markuplint/i18n';
2
2
  import type { AttributeType } from '@markuplint/ml-spec';
3
3
  import type { UnmatchedResult } from '@markuplint/types';
4
- export declare function createMessageValueExpected(t: Translator, baseTarget: string, type: AttributeType, matches: UnmatchedResult): string;
5
- export declare function __createMessageValueExpected(t: Translator, baseTarget: string, expected: string | null, matches: Pick<UnmatchedResult, 'partName' | 'reason' | 'raw' | 'candidate' | 'ref' | 'extra'>): string;
4
+ import type { ReadonlyDeep } from 'type-fest';
5
+ export declare function createMessageValueExpected(
6
+ t: Translator,
7
+ baseTarget: string,
8
+ type: ReadonlyDeep<AttributeType>,
9
+ matches: UnmatchedResult,
10
+ ): string;
11
+ export declare function __createMessageValueExpected(
12
+ t: Translator,
13
+ baseTarget: string,
14
+ expected: string | null,
15
+ matches: Pick<UnmatchedResult, 'partName' | 'reason' | 'raw' | 'candidate' | 'ref' | 'extra'>,
16
+ ): string;
@@ -22,6 +22,7 @@ function createMessageValueExpected(t, baseTarget, type, matches) {
22
22
  }
23
23
  exports.createMessageValueExpected = createMessageValueExpected;
24
24
  function __createMessageValueExpected(t, baseTarget, expected, matches) {
25
+ var _a;
25
26
  let target = baseTarget;
26
27
  let reasonPart;
27
28
  let expectPart;
@@ -51,7 +52,7 @@ function __createMessageValueExpected(t, baseTarget, expected, matches) {
51
52
  break;
52
53
  }
53
54
  case 'extra-token': {
54
- const token = matches.partName || 'token';
55
+ const token = (_a = matches.partName) !== null && _a !== void 0 ? _a : 'token';
55
56
  reasonPart = t('Found {0}', t('extra {0}', token)) + ' ' + t([matches.raw]);
56
57
  if (matches.extra) {
57
58
  const extra = expectValueToWord(t, matches.extra, 'Any');
@@ -201,7 +202,7 @@ exports.__createMessageValueExpected = __createMessageValueExpected;
201
202
  function createExpectedObject(type, matches, t) {
202
203
  var _a;
203
204
  const expectedObject = [];
204
- if ((_a = matches.expects) === null || _a === void 0 ? void 0 : _a.length) {
205
+ if (matches.expects && matches.expects.length > 0) {
205
206
  expectedObject.push(...matches.expects.map(expect => {
206
207
  return expectValueToWord(t, expect, type);
207
208
  }));
@@ -221,7 +222,7 @@ function createExpectedObject(type, matches, t) {
221
222
  ? null
222
223
  : 1 < expectedObject.length
223
224
  ? t('either {0}', t(expectedObject))
224
- : expectedObject[0];
225
+ : (_a = expectedObject[0]) !== null && _a !== void 0 ? _a : null;
225
226
  return expects;
226
227
  }
227
228
  function expectValueToWord(t, expect, type) {
package/lib/debug.js CHANGED
@@ -3,4 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.log = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const debug_1 = tslib_1.__importDefault(require("debug"));
6
- exports.log = (0, debug_1.default)('markuplint-rules');
6
+ exports.log = (0, debug_1.default)('ml-rules');
@@ -1,2 +1,4 @@
1
- declare const _default: import("@markuplint/ml-core").RuleSeed<import("@markuplint/ml-core").RuleConfigValue, null>;
1
+ declare const _default: Readonly<
2
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
3
+ >;
2
4
  export default _default;
@@ -1,2 +1,4 @@
1
- declare const _default: import("@markuplint/ml-core").RuleSeed<import("@markuplint/ml-core").RuleConfigValue, null>;
1
+ declare const _default: Readonly<
2
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
3
+ >;
2
4
  export default _default;
@@ -10,8 +10,8 @@ exports.default = (0, ml_core_1.createRule)({
10
10
  return;
11
11
  }
12
12
  const spec = (0, ml_core_1.getSpec)(el, document.specs.specs);
13
- if (spec && (spec.obsolete || spec.deprecated || spec.nonStandard)) {
14
- const message = t('{0} is {1:c}', t('the "{0*}" {1}', el.localName, 'element'), spec.deprecated ? 'deprecated' : spec.obsolete ? 'obsolete' : 'non-standard');
13
+ if (spec && (spec.obsolete != null || spec.deprecated || spec.nonStandard)) {
14
+ const message = t('{0} is {1:c}', t('the "{0*}" {1}', el.localName, 'element'), spec.deprecated ? 'deprecated' : spec.obsolete != null ? 'obsolete' : 'non-standard');
15
15
  report({
16
16
  scope: el,
17
17
  message,
@@ -1,2 +1,2 @@
1
- declare const _default: import("@markuplint/ml-core").RuleSeed<string[], null>;
1
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<string[], undefined>>;
2
2
  export default _default;
@@ -1,5 +1,5 @@
1
1
  type Option = {
2
- denyObsoleteType: boolean;
2
+ denyObsoleteType: boolean;
3
3
  };
4
- declare const _default: import("@markuplint/ml-core").RuleSeed<"always", Option>;
4
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<'always', Option>>;
5
5
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("@markuplint/ml-core").RuleSeed<boolean, null>;
1
+ declare const _default: Readonly<import('@markuplint/ml-core').RuleSeed<boolean, undefined>>;
2
2
  export default _default;
package/lib/helpers.d.ts CHANGED
@@ -1,8 +1,13 @@
1
1
  import type { Log } from './debug';
2
2
  import type { Translator } from '@markuplint/i18n';
3
+ import type { PlainData } from '@markuplint/ml-config';
3
4
  import type { Element, RuleConfigValue, Document } from '@markuplint/ml-core';
4
5
  import type { Attribute } from '@markuplint/ml-spec';
5
- export declare function attrMatches<T extends RuleConfigValue, R>(node: Element<T, R>, condition: Attribute['condition']): boolean;
6
+ import type { WritableDeep } from 'type-fest';
7
+ export declare function attrMatches<T extends RuleConfigValue, O extends PlainData>(
8
+ node: Element<T, O>,
9
+ condition: Attribute['condition'],
10
+ ): boolean;
6
11
  export declare function match(needle: string, pattern: string): boolean;
7
12
  /**
8
13
  * PotentialCustomElementName
@@ -20,28 +25,38 @@ export declare function match(needle: string, pattern: string): boolean;
20
25
  * Originally, it is not possible to define a name including ASCII upper alphas in the custom element, but it is not treated as illegal by the HTML parser.
21
26
  */
22
27
  export declare const rePCENChar: string;
23
- export declare function isValidAttr(t: Translator, name: string, value: string, isDynamicValue: boolean, node: Element<any, any>, attrSpecs: Attribute[], log?: Log): false | {
24
- invalidType: "non-existent" | "invalid-value";
25
- message: string;
26
- loc?: {
27
- raw: string;
28
- line: number;
29
- col: number;
30
- } | undefined;
31
- };
28
+ export declare function isValidAttr(
29
+ t: Translator,
30
+ name: string,
31
+ value: string,
32
+ isDynamicValue: boolean,
33
+ node: Element<any, any>,
34
+ attrSpecs: readonly Attribute[],
35
+ log?: Log,
36
+ ):
37
+ | false
38
+ | {
39
+ invalidType: 'non-existent' | 'invalid-value' | 'disallowed-attr';
40
+ message: string;
41
+ loc?:
42
+ | {
43
+ raw: string;
44
+ line: number;
45
+ col: number;
46
+ }
47
+ | undefined;
48
+ };
32
49
  export declare function toNormalizedValue(value: string, spec: Attribute): string;
33
50
  export declare function accnameMayBeMutable(el: Element<any, any>, document: Document<any, any>): boolean;
34
- export declare function getOwnedLabel<V extends RuleConfigValue, O>(el: Element<V, O>, document: Document<V, O>): Element<V, O> | null;
35
- export declare function decodeCharRef(characterReference: string): string;
51
+ export declare function getOwnedLabel<V extends RuleConfigValue, O extends PlainData>(
52
+ el: Element<V, O>,
53
+ document: Document<V, O>,
54
+ ): Element<V, O> | null;
36
55
  export declare class Collection<T> {
37
- #private;
38
- constructor(...items: (T | null | undefined)[]);
39
- [Symbol.iterator](): Iterator<T>;
40
- add(...items: (T | null | undefined)[]): void;
41
- toArray(): readonly T[];
56
+ #private;
57
+ constructor(...items: readonly (T | null | undefined)[]);
58
+ [Symbol.iterator](): Iterator<T>;
59
+ add(...items: readonly (T | null | undefined)[]): void;
60
+ toArray(): readonly T[];
42
61
  }
43
- type Writeable<T> = {
44
- -readonly [P in keyof T]: T[P];
45
- };
46
- export declare function deepCopy<T>(value: T): Writeable<T>;
47
- export {};
62
+ export declare function deepCopy<T>(value: T): WritableDeep<T>;
package/lib/helpers.js CHANGED
@@ -1,17 +1,18 @@
1
1
  "use strict";
2
2
  var _Collection_items;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.deepCopy = exports.Collection = exports.decodeCharRef = exports.getOwnedLabel = exports.accnameMayBeMutable = exports.toNormalizedValue = exports.isValidAttr = exports.rePCENChar = exports.match = exports.attrMatches = void 0;
4
+ exports.deepCopy = exports.Collection = exports.getOwnedLabel = exports.accnameMayBeMutable = exports.toNormalizedValue = exports.isValidAttr = exports.rePCENChar = exports.match = exports.attrMatches = void 0;
5
5
  const tslib_1 = require("tslib");
6
6
  // @ts-ignore
7
7
  const structured_clone_1 = tslib_1.__importDefault(require("@ungap/structured-clone"));
8
- const html_entities_1 = require("html-entities");
9
8
  const attr_check_1 = require("./attr-check");
10
- function attrMatches(node, condition) {
11
- if (!condition) {
9
+ function attrMatches(
10
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
11
+ node, condition) {
12
+ if (condition == null) {
12
13
  return true;
13
14
  }
14
- const condSelector = Array.isArray(condition) ? condition.join(',') : condition;
15
+ const condSelector = typeof condition === 'string' ? condition : condition.join(',');
15
16
  return node.matches(condSelector);
16
17
  }
17
18
  exports.attrMatches = attrMatches;
@@ -60,18 +61,26 @@ exports.rePCENChar = [
60
61
  '[\uFDF0-\uFFFD]',
61
62
  '[\uD800-\uDBFF][\uDC00-\uDFFF]',
62
63
  ].join('|');
63
- function isValidAttr(t, name, value, isDynamicValue, node, attrSpecs, log) {
64
+ function isValidAttr(t, name, value, isDynamicValue,
65
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
66
+ node, attrSpecs,
67
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
68
+ log) {
64
69
  let invalid = false;
65
70
  const spec = attrSpecs.find(s => s.name.toLowerCase() === name.toLowerCase());
66
71
  log && log('Spec of the %s attr: %o', name, spec);
67
72
  invalid = (0, attr_check_1.attrCheck)(t, name, value, false, spec);
68
- if (!invalid && spec && spec.condition && !node.hasSpreadAttr && !attrMatches(node, spec.condition)) {
73
+ if (invalid === false &&
74
+ spec &&
75
+ spec.condition != null &&
76
+ !node.hasSpreadAttr &&
77
+ !attrMatches(node, spec.condition)) {
69
78
  invalid = {
70
79
  invalidType: 'non-existent',
71
80
  message: t('{0} is {1}', t('the "{0*}" {1}', name, 'attribute'), 'disallowed'),
72
81
  };
73
82
  }
74
- if (invalid && invalid.invalidType === 'invalid-value' && isDynamicValue) {
83
+ if (invalid !== false && invalid.invalidType === 'invalid-value' && isDynamicValue) {
75
84
  invalid = false;
76
85
  }
77
86
  return invalid;
@@ -106,7 +115,11 @@ function toNormalizedValue(value, spec) {
106
115
  return normalized;
107
116
  }
108
117
  exports.toNormalizedValue = toNormalizedValue;
109
- function accnameMayBeMutable(el, document) {
118
+ function accnameMayBeMutable(
119
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
120
+ el,
121
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
122
+ document) {
110
123
  if (el.hasMutableAttributes() || el.hasMutableChildren(true)) {
111
124
  return true;
112
125
  }
@@ -118,7 +131,11 @@ function accnameMayBeMutable(el, document) {
118
131
  }
119
132
  exports.accnameMayBeMutable = accnameMayBeMutable;
120
133
  const labelable = ['button', 'input:not([type=hidden])', 'meter', 'output', 'progress', 'select', 'textarea'];
121
- function getOwnedLabel(el, document) {
134
+ function getOwnedLabel(
135
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
136
+ el,
137
+ // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
138
+ document) {
122
139
  if (!labelable.some(cond => el.matches(cond))) {
123
140
  return null;
124
141
  }
@@ -132,10 +149,6 @@ function getOwnedLabel(el, document) {
132
149
  return ownedLabel;
133
150
  }
134
151
  exports.getOwnedLabel = getOwnedLabel;
135
- function decodeCharRef(characterReference) {
136
- return (0, html_entities_1.decode)(characterReference);
137
- }
138
- exports.decodeCharRef = decodeCharRef;
139
152
  class Collection {
140
153
  constructor(...items) {
141
154
  _Collection_items.set(this, new Set());
@@ -1,2 +1,4 @@
1
- declare const _default: import("@markuplint/ml-core").RuleSeed<import("@markuplint/ml-core").RuleConfigValue, null>;
1
+ declare const _default: Readonly<
2
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
3
+ >;
2
4
  export default _default;