@markuplint/rules 3.4.0 → 3.6.0

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 (88) hide show
  1. package/lib/attr-check.d.ts +3 -2
  2. package/lib/attr-check.js +19 -22
  3. package/lib/attr-duplication/index.d.ts +3 -1
  4. package/lib/attr-duplication/index.js +2 -1
  5. package/lib/attr-value-quotes/index.d.ts +1 -1
  6. package/lib/case-sensitive-attr-name/index.d.ts +1 -1
  7. package/lib/case-sensitive-tag-name/index.d.ts +1 -1
  8. package/lib/character-reference/index.d.ts +1 -1
  9. package/lib/class-naming/index.d.ts +1 -1
  10. package/lib/class-naming/index.js +2 -4
  11. package/lib/create-message.d.ts +2 -1
  12. package/lib/create-message.js +5 -4
  13. package/lib/deprecated-attr/index.d.ts +3 -1
  14. package/lib/deprecated-element/index.d.ts +3 -1
  15. package/lib/deprecated-element/index.js +2 -2
  16. package/lib/disallowed-element/index.d.ts +1 -1
  17. package/lib/doctype/index.d.ts +1 -1
  18. package/lib/end-tag/index.d.ts +1 -1
  19. package/lib/helpers.d.ts +18 -36
  20. package/lib/helpers.js +27 -14
  21. package/lib/id-duplication/index.d.ts +3 -1
  22. package/lib/index.d.ts +175 -3
  23. package/lib/index.js +2 -1
  24. package/lib/ineffective-attr/index.d.ts +3 -1
  25. package/lib/ineffective-attr/index.js +2 -5
  26. package/lib/invalid-attr/index.d.ts +1 -1
  27. package/lib/invalid-attr/index.js +8 -8
  28. package/lib/label-has-control/index.d.ts +3 -1
  29. package/lib/landmark-roles/index.d.ts +1 -1
  30. package/lib/landmark-roles/index.js +7 -3
  31. package/lib/no-boolean-attr-value/index.d.ts +3 -1
  32. package/lib/no-default-value/index.d.ts +3 -1
  33. package/lib/no-empty-palpable-content/index.d.ts +1 -1
  34. package/lib/no-hard-code-id/index.d.ts +3 -1
  35. package/lib/no-refer-to-non-existent-id/index.d.ts +8 -6
  36. package/lib/no-refer-to-non-existent-id/index.js +4 -14
  37. package/lib/no-use-event-handler-attr/index.d.ts +1 -1
  38. package/lib/permitted-contents/choice.d.ts +3 -2
  39. package/lib/permitted-contents/choice.js +3 -1
  40. package/lib/permitted-contents/complex-branch.d.ts +3 -2
  41. package/lib/permitted-contents/complex-branch.js +4 -2
  42. package/lib/permitted-contents/content-model.d.ts +1 -1
  43. package/lib/permitted-contents/content-model.js +7 -3
  44. package/lib/permitted-contents/count-pattern.d.ts +5 -4
  45. package/lib/permitted-contents/count-pattern.js +9 -3
  46. package/lib/permitted-contents/index.d.ts +1 -1
  47. package/lib/permitted-contents/index.js +8 -11
  48. package/lib/permitted-contents/matches-selector.d.ts +1 -2
  49. package/lib/permitted-contents/matches-selector.js +4 -2
  50. package/lib/permitted-contents/order.d.ts +3 -2
  51. package/lib/permitted-contents/order.js +7 -5
  52. package/lib/permitted-contents/recursive-branch.d.ts +2 -1
  53. package/lib/permitted-contents/recursive-branch.js +5 -3
  54. package/lib/permitted-contents/represent-transparent-nodes.js +4 -2
  55. package/lib/permitted-contents/start.d.ts +2 -1
  56. package/lib/permitted-contents/start.js +4 -2
  57. package/lib/permitted-contents/transparent.d.ts +2 -2
  58. package/lib/permitted-contents/transparent.js +3 -1
  59. package/lib/permitted-contents/types.d.ts +10 -9
  60. package/lib/permitted-contents/utils.d.ts +44 -80
  61. package/lib/permitted-contents/utils.js +23 -9
  62. package/lib/placeholder-label-option/index.d.ts +1 -1
  63. package/lib/placeholder-label-option/index.js +11 -6
  64. package/lib/require-accessible-name/index.d.ts +1 -1
  65. package/lib/require-datetime/index.d.ts +1 -1
  66. package/lib/require-datetime/utils.d.ts +1 -1
  67. package/lib/require-datetime/utils.js +3 -2
  68. package/lib/required-attr/index.d.ts +1 -1
  69. package/lib/required-attr/index.js +5 -5
  70. package/lib/required-element/index.d.ts +1 -1
  71. package/lib/required-h1/index.d.ts +1 -1
  72. package/lib/use-list/index.d.ts +2 -2
  73. package/lib/use-list/index.js +4 -3
  74. package/lib/wai-aria/checkings/default-value.d.ts +1 -1
  75. package/lib/wai-aria/checkings/deprecated-props.d.ts +1 -1
  76. package/lib/wai-aria/checkings/disallowed-prop.d.ts +4 -8
  77. package/lib/wai-aria/checkings/disallowed-prop.js +1 -1
  78. package/lib/wai-aria/checkings/implicit-props.d.ts +2 -2
  79. package/lib/wai-aria/checkings/implicit-props.js +3 -2
  80. package/lib/wai-aria/checkings/interaction-in-hidden.js +3 -1
  81. package/lib/wai-aria/checkings/no-global-prop.d.ts +1 -1
  82. package/lib/wai-aria/checkings/presentational-children.js +3 -1
  83. package/lib/wai-aria/checkings/required-owned-elements.js +5 -3
  84. package/lib/wai-aria/checkings/required-prop.d.ts +1 -1
  85. package/lib/wai-aria/checkings/value.d.ts +7 -2
  86. package/lib/wai-aria/checkings/value.js +3 -1
  87. package/lib/wai-aria/index.d.ts +1 -1
  88. package/package.json +10 -9
@@ -1,5 +1,6 @@
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
5
  invalidType: 'non-existent' | 'invalid-value' | 'disallowed-attr';
5
6
  message: string;
@@ -29,6 +30,6 @@ export declare function valueCheck(
29
30
  t: Translator,
30
31
  name: string,
31
32
  value: string,
32
- type: AttributeType,
33
- ): string | [string, Loc] | false;
33
+ type: ReadonlyDeep<AttributeType>,
34
+ ): [string, Loc] | false;
34
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");
@@ -53,35 +54,31 @@ function attrCheck(t, name, value, isCustomRule, spec) {
53
54
  message: t('{0} is {1:c}', t('the "{0*}" {1}', name, 'attribute'), 'disallowed'),
54
55
  };
55
56
  }
56
- const types = Array.isArray(spec.type) ? spec.type : [spec.type];
57
+ const types = (0, shared_1.toNonNullableArrayFromItemOrArray)(spec.type);
57
58
  const invalidList = types.map(type => {
58
- if (!type) {
59
- (0, debug_1.log)('attrCheck: %o', arguments);
60
- throw new Error('type is empty in spec');
61
- }
62
59
  const invalid = valueCheck(t, name, value, type);
63
- if (invalid) {
64
- if (typeof invalid === 'string') {
65
- return {
66
- invalidType: 'invalid-value',
67
- message: invalid,
68
- };
69
- }
70
- else {
71
- return {
72
- invalidType: 'invalid-value',
73
- message: invalid[0],
74
- loc: invalid[1],
75
- };
76
- }
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
+ };
77
75
  }
78
- return false;
79
76
  });
80
- if (invalidList.some(i => !i)) {
77
+ if (invalidList.some(i => i === false)) {
81
78
  return false;
82
79
  }
83
80
  const invalid = invalidList.find(i => i);
84
- return invalid || false;
81
+ return invalid !== null && invalid !== void 0 ? invalid : false;
85
82
  }
86
83
  exports.attrCheck = attrCheck;
87
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,
@@ -3,5 +3,5 @@ export type Quote = '"' | "'";
3
3
  export type QuoteMap = {
4
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]).filter(className => className && typeof className === 'string');
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,10 +1,11 @@
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
+ import type { ReadonlyDeep } from 'type-fest';
4
5
  export declare function createMessageValueExpected(
5
6
  t: Translator,
6
7
  baseTarget: string,
7
- type: AttributeType,
8
+ type: ReadonlyDeep<AttributeType>,
8
9
  matches: UnmatchedResult,
9
10
  ): string;
10
11
  export declare function __createMessageValueExpected(
@@ -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');
@@ -199,9 +200,9 @@ function __createMessageValueExpected(t, baseTarget, expected, matches) {
199
200
  }
200
201
  exports.__createMessageValueExpected = __createMessageValueExpected;
201
202
  function createExpectedObject(type, matches, t) {
202
- var _a, _b;
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
- : (_b = expectedObject[0]) !== null && _b !== void 0 ? _b : null;
225
+ : (_a = expectedObject[0]) !== null && _a !== void 0 ? _a : null;
225
226
  return expects;
226
227
  }
227
228
  function expectValueToWord(t, expect, 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;
@@ -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
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,11 +1,9 @@
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>(
6
- node: Element<T, R>,
7
- condition: Attribute['condition'],
8
- ): boolean;
6
+ export declare function attrMatches<T extends RuleConfigValue, O extends PlainData>(node: Element<T, O>, condition: Attribute['condition']): boolean;
9
7
  export declare function match(needle: string, pattern: string): boolean;
10
8
  /**
11
9
  * PotentialCustomElementName
@@ -23,43 +21,27 @@ export declare function match(needle: string, pattern: string): boolean;
23
21
  * 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.
24
22
  */
25
23
  export declare const rePCENChar: string;
26
- export declare function isValidAttr(
27
- t: Translator,
28
- name: string,
29
- value: string,
30
- isDynamicValue: boolean,
31
- node: Element<any, any>,
32
- attrSpecs: Attribute[],
33
- log?: Log,
34
- ):
35
- | false
36
- | {
37
- invalidType: 'non-existent' | 'invalid-value' | 'disallowed-attr';
38
- message: string;
39
- loc?:
40
- | {
41
- raw: string;
42
- line: number;
43
- col: number;
44
- }
45
- | undefined;
46
- };
24
+ export declare function isValidAttr(t: Translator, name: string, value: string, isDynamicValue: boolean, node: Element<any, any>, attrSpecs: readonly Attribute[], log?: Log): false | {
25
+ invalidType: "non-existent" | "invalid-value" | "disallowed-attr";
26
+ message: string;
27
+ loc?: {
28
+ raw: string;
29
+ line: number;
30
+ col: number;
31
+ } | undefined;
32
+ };
47
33
  export declare function toNormalizedValue(value: string, spec: Attribute): string;
48
34
  export declare function accnameMayBeMutable(el: Element<any, any>, document: Document<any, any>): boolean;
49
- export declare function getOwnedLabel<V extends RuleConfigValue, O>(
50
- el: Element<V, O>,
51
- document: Document<V, O>,
52
- ): Element<V, O> | null;
53
- export declare function decodeCharRef(characterReference: string): string;
35
+ export declare function getOwnedLabel<V extends RuleConfigValue, O extends PlainData>(el: Element<V, O>, document: Document<V, O>): Element<V, O> | null;
54
36
  export declare class Collection<T> {
55
- #private;
56
- constructor(...items: (T | null | undefined)[]);
57
- [Symbol.iterator](): Iterator<T>;
58
- add(...items: (T | null | undefined)[]): void;
59
- toArray(): readonly T[];
37
+ #private;
38
+ constructor(...items: readonly (T | null | undefined)[]);
39
+ [Symbol.iterator](): Iterator<T>;
40
+ add(...items: readonly (T | null | undefined)[]): void;
41
+ toArray(): readonly T[];
60
42
  }
61
43
  type Writeable<T> = {
62
- -readonly [P in keyof T]: T[P];
44
+ -readonly [P in keyof T]: T[P];
63
45
  };
64
46
  export declare function deepCopy<T>(value: T): Writeable<T>;
65
47
  export {};
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;
package/lib/index.d.ts CHANGED
@@ -1,3 +1,175 @@
1
- import type { AnyRuleSeed } from '@markuplint/ml-core';
2
- declare const _default: Record<string, AnyRuleSeed>;
3
- export default _default;
1
+ declare const rules: {
2
+ readonly 'attr-duplication': Readonly<
3
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
4
+ >;
5
+ readonly 'attr-value-quotes': Readonly<
6
+ import('@markuplint/ml-core').RuleSeed<import('./attr-value-quotes').Type, undefined>
7
+ >;
8
+ readonly 'case-sensitive-attr-name': Readonly<
9
+ import('@markuplint/ml-core').RuleSeed<import('./case-sensitive-attr-name').Value, undefined>
10
+ >;
11
+ readonly 'case-sensitive-tag-name': Readonly<
12
+ import('@markuplint/ml-core').RuleSeed<import('./case-sensitive-tag-name').Value, undefined>
13
+ >;
14
+ readonly 'character-reference': Readonly<
15
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
16
+ >;
17
+ readonly 'class-naming': Readonly<
18
+ import('@markuplint/ml-core').RuleSeed<import('./class-naming').Value, undefined>
19
+ >;
20
+ readonly 'deprecated-attr': Readonly<
21
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
22
+ >;
23
+ readonly 'deprecated-element': Readonly<
24
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
25
+ >;
26
+ readonly 'disallowed-element': Readonly<import('@markuplint/ml-core').RuleSeed<string[], undefined>>;
27
+ readonly doctype: Readonly<
28
+ import('@markuplint/ml-core').RuleSeed<
29
+ 'always',
30
+ {
31
+ denyObsoleteType: boolean;
32
+ }
33
+ >
34
+ >;
35
+ readonly 'end-tag': Readonly<import('@markuplint/ml-core').RuleSeed<boolean, undefined>>;
36
+ readonly 'id-duplication': Readonly<
37
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
38
+ >;
39
+ readonly 'ineffective-attr': Readonly<
40
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
41
+ >;
42
+ readonly 'invalid-attr': Readonly<
43
+ import('@markuplint/ml-core').RuleSeed<
44
+ boolean,
45
+ {
46
+ attrs?:
47
+ | Record<
48
+ string,
49
+ | {
50
+ enum: [string, ...string[]];
51
+ }
52
+ | {
53
+ pattern: string;
54
+ }
55
+ | {
56
+ type: import('packages/@markuplint/ml-spec/lib').AttributeType;
57
+ }
58
+ | {
59
+ disallowed: true;
60
+ }
61
+ >
62
+ | undefined;
63
+ ignoreAttrNamePrefix?: string | string[] | undefined;
64
+ allowToAddPropertiesForPretender?: boolean | undefined;
65
+ }
66
+ >
67
+ >;
68
+ readonly 'label-has-control': Readonly<
69
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
70
+ >;
71
+ readonly 'landmark-roles': Readonly<
72
+ import('@markuplint/ml-core').RuleSeed<
73
+ boolean,
74
+ {
75
+ ignoreRoles: (
76
+ | ('banner' | 'main' | 'complementary' | 'contentinfo')
77
+ | 'form'
78
+ | 'navigation'
79
+ | 'region'
80
+ )[];
81
+ labelEachArea: boolean;
82
+ }
83
+ >
84
+ >;
85
+ readonly 'no-boolean-attr-value': Readonly<
86
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
87
+ >;
88
+ readonly 'no-default-value': Readonly<
89
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
90
+ >;
91
+ readonly 'no-empty-palpable-content': Readonly<
92
+ import('@markuplint/ml-core').RuleSeed<
93
+ boolean,
94
+ {
95
+ extendsExposableElements?: boolean | undefined;
96
+ ignoreIfAriaBusy?: boolean | undefined;
97
+ }
98
+ >
99
+ >;
100
+ readonly 'no-hard-code-id': Readonly<
101
+ import('@markuplint/ml-core').RuleSeed<import('@markuplint/ml-core').RuleConfigValue, undefined>
102
+ >;
103
+ readonly 'no-refer-to-non-existent-id': Readonly<
104
+ import('@markuplint/ml-core').RuleSeed<
105
+ import('@markuplint/ml-core').RuleConfigValue,
106
+ {
107
+ ariaVersion: import('packages/@markuplint/ml-spec/lib').ARIAVersion;
108
+ fragmentRefersNameAttr: boolean;
109
+ }
110
+ >
111
+ >;
112
+ readonly 'no-use-event-handler-attr': Readonly<
113
+ import('@markuplint/ml-core').RuleSeed<
114
+ boolean,
115
+ {
116
+ ignore?: string | string[] | undefined;
117
+ }
118
+ >
119
+ >;
120
+ readonly 'permitted-contents': Readonly<
121
+ import('@markuplint/ml-core').RuleSeed<
122
+ import('./permitted-contents/types').TagRule[],
123
+ import('./permitted-contents/types').Options
124
+ >
125
+ >;
126
+ readonly 'placeholder-label-option': Readonly<import('@markuplint/ml-core').RuleSeed<boolean, undefined>>;
127
+ readonly 'require-accessible-name': Readonly<
128
+ import('@markuplint/ml-core').RuleSeed<
129
+ boolean,
130
+ {
131
+ ariaVersion: import('packages/@markuplint/ml-spec/lib').ARIAVersion;
132
+ }
133
+ >
134
+ >;
135
+ readonly 'require-datetime': Readonly<
136
+ import('@markuplint/ml-core').RuleSeed<
137
+ boolean,
138
+ {
139
+ langs?: import('./require-datetime/types').Lang[] | undefined;
140
+ }
141
+ >
142
+ >;
143
+ readonly 'required-attr': Readonly<
144
+ import('@markuplint/ml-core').RuleSeed<
145
+ | string
146
+ | (
147
+ | string
148
+ | {
149
+ name: string;
150
+ value: string | string[];
151
+ }
152
+ )[],
153
+ undefined
154
+ >
155
+ >;
156
+ readonly 'required-element': Readonly<
157
+ import('@markuplint/ml-core').RuleSeed<
158
+ string[],
159
+ {
160
+ ignoreHasMutableContents: boolean;
161
+ }
162
+ >
163
+ >;
164
+ readonly 'required-h1': Readonly<import('@markuplint/ml-core').RuleSeed<boolean, import('./required-h1').Options>>;
165
+ readonly 'use-list': Readonly<
166
+ import('@markuplint/ml-core').RuleSeed<
167
+ readonly string[],
168
+ {
169
+ spaceNeededBullets?: string[] | undefined;
170
+ }
171
+ >
172
+ >;
173
+ readonly 'wai-aria': Readonly<import('@markuplint/ml-core').RuleSeed<boolean, import('./wai-aria/types').Options>>;
174
+ };
175
+ export default rules;
package/lib/index.js CHANGED
@@ -32,7 +32,7 @@ const required_element_1 = tslib_1.__importDefault(require("./required-element")
32
32
  const required_h1_1 = tslib_1.__importDefault(require("./required-h1"));
33
33
  const use_list_1 = tslib_1.__importDefault(require("./use-list"));
34
34
  const wai_aria_1 = tslib_1.__importDefault(require("./wai-aria"));
35
- exports.default = {
35
+ const rules = {
36
36
  'attr-duplication': attr_duplication_1.default,
37
37
  'attr-value-quotes': attr_value_quotes_1.default,
38
38
  'case-sensitive-attr-name': case_sensitive_attr_name_1.default,
@@ -65,3 +65,4 @@ exports.default = {
65
65
  'use-list': use_list_1.default,
66
66
  'wai-aria': wai_aria_1.default,
67
67
  };
68
+ exports.default = 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,6 +1,7 @@
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
  exports.default = (0, ml_core_1.createRule)({
5
6
  defaultSeverity: 'warning',
6
7
  async verify({ document, report, t }) {
@@ -14,11 +15,7 @@ exports.default = (0, ml_core_1.createRule)({
14
15
  if (!spec) {
15
16
  return;
16
17
  }
17
- const ineffectiveConditions = spec.ineffective
18
- ? Array.isArray(spec.ineffective)
19
- ? spec.ineffective
20
- : [spec.ineffective]
21
- : [];
18
+ const ineffectiveConditions = (0, shared_1.toNoEmptyStringArrayFromStringOrArray)(spec.ineffective);
22
19
  if (ineffectiveConditions.some(selector => attr.ownerElement.matches(selector))) {
23
20
  report({
24
21
  scope: attr,