@huangjunsen/markdownlint-config 1.0.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +3 -0
  3. package/index.json +112 -0
  4. package/package.json +24 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 黄俊森
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # `markdownlint-config`
2
+
3
+ > TODO: description
package/index.json ADDED
@@ -0,0 +1,112 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json",
3
+ "default": true,
4
+ "ul-style": {
5
+ "style": "dash"
6
+ },
7
+ "no-trailing-spaces": {
8
+ "br_spaces": 0,
9
+ "list_item_empty_lines": false
10
+ },
11
+ "list-marker-space": false,
12
+ "line-length": false,
13
+ "no-inline-html": false,
14
+ "no-duplicate-header": false,
15
+ "fenced-code-language": true,
16
+ "proper-names": {
17
+ "names": [
18
+ "JavaScript",
19
+ "HTML",
20
+ "CSS",
21
+ "AJAX",
22
+ "JSON",
23
+ "DOM",
24
+ "BOM",
25
+ "Less",
26
+ "Sass",
27
+ "SCSS",
28
+ "HTTP",
29
+ "HTTPS",
30
+ "WebSocket",
31
+ "ECMAScript",
32
+ "ECMAScript 2015",
33
+ "ECMAScript 6",
34
+ "ES6",
35
+ "ES2015",
36
+ "jQuery",
37
+ "jQuery Mobile",
38
+ "React",
39
+ "React Native",
40
+ "Bootstrap",
41
+ "Gulp",
42
+ "Grunt",
43
+ "webpack",
44
+ "Yeoman",
45
+ "npm",
46
+ "spm",
47
+ "Babel",
48
+ "Mocha",
49
+ "Jasmine",
50
+ "PHP",
51
+ "Java",
52
+ "Node.js",
53
+ "NodeJS",
54
+ "MySQL",
55
+ "MongoDB",
56
+ "Redis",
57
+ "Apache",
58
+ "Nginx",
59
+ "NGINX",
60
+ "GitHub",
61
+ "GitLab",
62
+ "GitCafe",
63
+ "Chrome",
64
+ "Firefox",
65
+ "Safari",
66
+ "Internet Explore",
67
+ "IE",
68
+ "IE 7",
69
+ "Opera",
70
+ "UC",
71
+ "Android",
72
+ "iOS",
73
+ "Windows",
74
+ "OS X",
75
+ "Ubuntu",
76
+ "Linux",
77
+ "Debian",
78
+ "PC",
79
+ "Mobile",
80
+ "H5",
81
+ "MacBook",
82
+ "MacBook Pro",
83
+ "MacBook Air",
84
+ "iMac",
85
+ "Mac Pro",
86
+ "iPad",
87
+ "Mac mini",
88
+ "iPad Air",
89
+ "iPad Air 2",
90
+ "iPad mini",
91
+ "iPhone",
92
+ "iPhone 6s",
93
+ "iPhone 6s Plus",
94
+ "Apple Watch",
95
+ "Alibaba",
96
+ "Taobao",
97
+ "Google",
98
+ "Alphabet",
99
+ "Apple",
100
+ "Microsoft",
101
+ "Yahoo",
102
+ "FPS",
103
+ "UI",
104
+ "URL",
105
+ "URI",
106
+ "URLs",
107
+ "URIs",
108
+ "Visual Studio Code"
109
+ ],
110
+ "code_blocks": false
111
+ }
112
+ }
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@huangjunsen/markdownlint-config",
3
+ "version": "1.0.0",
4
+ "main": "index.json",
5
+ "description": "markdown文档规范",
6
+ "keywords": [
7
+ "encode",
8
+ "markdown",
9
+ "lint"
10
+ ],
11
+ "author": "Huangjunsen <951434130@qq.com>",
12
+ "homepage": "https://github.com/Huang-junsen/js-encode-fe-spec#readme",
13
+ "license": "ISC",
14
+ "dependencies": {
15
+ "markdownlint": "^0.34.0"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/Huang-junsen/js-encode-fe-spec.git"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/Huang-junsen/js-encode-fe-spec/issues"
23
+ }
24
+ }