@markuplint/rules 4.0.0-alpha.5 → 4.0.0-dev.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 (2) hide show
  1. package/lib/use-list/index.js +26 -26
  2. package/package.json +11 -11
@@ -5,32 +5,32 @@ export default createRule({
5
5
  /**
6
6
  * @see https://en.wikipedia.org/wiki/Bullet_(typography)#In_Unicode
7
7
  */
8
- '\u2022',
9
- '\u2023',
10
- '\u2043',
11
- '\u204C',
12
- '\u204D',
13
- '\u2219',
14
- '\u25CB',
15
- '\u25CF',
16
- '\u25D8',
17
- '\u25E6',
18
- '\u2619',
19
- '\u2765',
20
- '\u2767',
21
- '\u29BE',
22
- '\u29BF',
8
+ '\u2022', // • BULLET (HTML • · •, •)
9
+ '\u2023', // ‣ TRIANGULAR BULLET (HTML ‣)
10
+ '\u2043', // ⁃ HYPHEN BULLET (HTML ⁃ · ⁃)
11
+ '\u204C', // ⁌ BLACK LEFTWARDS BULLET (HTML ⁌)
12
+ '\u204D', // ⁍ BLACK RIGHTWARDS BULLET (HTML ⁍)
13
+ '\u2219', // ∙ BULLET OPERATOR (HTML ∙) for use in mathematical notation primarily as a dot product instead of interupt.
14
+ '\u25CB', // ○ WHITE CIRCLE (HTML ○ · ○)
15
+ '\u25CF', // ● BLACK CIRCLE (HTML ●)
16
+ '\u25D8', // ◘ INVERSE BULLET (HTML ◘)
17
+ '\u25E6', // ◦ WHITE BULLET (HTML ◦)
18
+ '\u2619', // ☙ REVERSED ROTATED FLORAL HEART BULLET (HTML ☙); see Fleuron (typography)
19
+ '\u2765', // ❥ ROTATED HEAVY BLACK HEART BULLET (HTML ❥)
20
+ '\u2767', // ❧ ROTATED FLORAL HEART BULLET (HTML ❧); see Fleuron (typography)
21
+ '\u29BE', // ⦾ CIRCLED WHITE BULLET (HTML ⦾ · ⦾)
22
+ '\u29BF', // ⦿ CIRCLED BULLET (HTML ⦿ · ⦿)
23
23
  /**
24
24
  * In Japanese
25
25
  * @see https://ja.wikipedia.org/wiki/中黒#符号位置
26
26
  */
27
- '\u00B7',
28
- '\u0387',
29
- '\u2022',
30
- '\u2219',
31
- '\u22C5',
32
- '\u30FB',
33
- '\uFF65',
27
+ '\u00B7', // MIDDLE DOT
28
+ '\u0387', // GREEK ANO TELIA
29
+ '\u2022', // BULLET
30
+ '\u2219', // BULLET OPERATOR
31
+ '\u22C5', // DOT OPERATOR
32
+ '\u30FB', // KATAKANA MIDDLE DOT
33
+ '\uFF65', // HALFWIDTH KATAKANA MIDDLE DOT
34
34
  /**
35
35
  * In Other Languages
36
36
  */
@@ -38,8 +38,8 @@ export default createRule({
38
38
  /**
39
39
  * From Markdown
40
40
  */
41
- '-',
42
- '*',
41
+ '-', // dashes
42
+ '*', // asterisks
43
43
  '+', // plus signs
44
44
  ],
45
45
  defaultOptions: {
@@ -47,8 +47,8 @@ export default createRule({
47
47
  /**
48
48
  * From Markdown
49
49
  */
50
- '-',
51
- '*',
50
+ '-', // dashes
51
+ '*', // asterisks
52
52
  '+', // plus signs
53
53
  ],
54
54
  noPrev: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/rules",
3
- "version": "4.0.0-alpha.5",
3
+ "version": "4.0.0-dev.0+7c596917",
4
4
  "description": "Built-in rules of markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -25,18 +25,18 @@
25
25
  "./lib/permitted-contents/debug.js": "./lib/permitted-contents/debug.browser.js"
26
26
  },
27
27
  "dependencies": {
28
- "@markuplint/html-spec": "4.0.0-alpha.5",
29
- "@markuplint/ml-core": "4.0.0-alpha.5",
30
- "@markuplint/ml-spec": "4.0.0-alpha.5",
31
- "@markuplint/selector": "4.0.0-alpha.5",
32
- "@markuplint/shared": "4.0.0-alpha.5",
33
- "@markuplint/types": "4.0.0-alpha.5",
34
- "@types/debug": "^4.1.10",
28
+ "@markuplint/html-spec": "4.0.0-dev.0+7c596917",
29
+ "@markuplint/ml-core": "4.0.0-dev.0+7c596917",
30
+ "@markuplint/ml-spec": "4.0.0-dev.0+7c596917",
31
+ "@markuplint/selector": "4.0.0-dev.0+7c596917",
32
+ "@markuplint/shared": "4.0.0-dev.0+7c596917",
33
+ "@markuplint/types": "4.0.0-dev.0+7c596917",
34
+ "@types/debug": "^4.1.12",
35
35
  "@ungap/structured-clone": "^1.2.0",
36
36
  "ansi-colors": "^4.1.3",
37
- "chrono-node": "^2.7.0",
37
+ "chrono-node": "^2.7.3",
38
38
  "debug": "^4.3.4",
39
- "type-fest": "^4.5.0"
39
+ "type-fest": "^4.8.2"
40
40
  },
41
- "gitHead": "0c3e4690662edf1765bcc4b6411ec5507c1e2ea3"
41
+ "gitHead": "7c59691701465a0fb3a4b69187318e8033c463d4"
42
42
  }