@alexlit/lint-kit 103.0.0 → 105.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 (146) hide show
  1. package/.lintstagedrc.js +1 -2
  2. package/.markdownlintrc.js +1 -1
  3. package/.stylelintrc.js +1 -4
  4. package/README.md +1 -1
  5. package/package.json +16 -14
  6. package/packages/config-commitlint/CHANGELOG.md +7 -0
  7. package/packages/config-commitlint/README.md +28 -0
  8. package/packages/config-commitlint/index.js +3 -0
  9. package/packages/config-commitlint/package.json +38 -0
  10. package/packages/config-eslint/CHANGELOG.md +37 -0
  11. package/packages/config-eslint/README.md +69 -0
  12. package/packages/config-eslint/TODO.md +6 -0
  13. package/packages/config-eslint/dictionaries/index.js +462 -0
  14. package/packages/config-eslint/dictionaries/programming/bash.js +25 -0
  15. package/packages/config-eslint/dictionaries/programming/django.js +2345 -0
  16. package/packages/config-eslint/dictionaries/programming/elixir.js +64 -0
  17. package/packages/config-eslint/dictionaries/programming/go.js +7748 -0
  18. package/packages/config-eslint/dictionaries/programming/java.js +33527 -0
  19. package/packages/config-eslint/dictionaries/programming/latex.js +675 -0
  20. package/packages/config-eslint/dictionaries/programming/lua.js +394 -0
  21. package/packages/config-eslint/dictionaries/programming/php.js +9788 -0
  22. package/packages/config-eslint/dictionaries/programming/python.js +367 -0
  23. package/packages/config-eslint/dictionaries/programming/ruby.js +357 -0
  24. package/packages/config-eslint/dictionaries/programming/rust.js +115 -0
  25. package/packages/config-eslint/dictionaries/programming/scala.js +2755 -0
  26. package/packages/config-eslint/dictionaries/specialized/html-symbol-entities.js +1118 -0
  27. package/packages/config-eslint/dictionaries/specialized/lorem-ipsum.js +359 -0
  28. package/packages/config-eslint/index.js +225 -0
  29. package/packages/config-eslint/package.json +87 -0
  30. package/packages/config-eslint/plugins/array-func.js +21 -0
  31. package/packages/config-eslint/plugins/compat.js +8 -0
  32. package/packages/config-eslint/plugins/decorator-position.js +16 -0
  33. package/packages/config-eslint/plugins/eslint-comments.js +10 -0
  34. package/packages/config-eslint/plugins/etc.js +14 -0
  35. package/packages/config-eslint/plugins/ext.js +13 -0
  36. package/packages/config-eslint/plugins/filenames.js +39 -0
  37. package/packages/config-eslint/plugins/import.js +72 -0
  38. package/packages/config-eslint/plugins/jsdoc.js +33 -0
  39. package/packages/config-eslint/plugins/jsx-a11y.js +6 -0
  40. package/packages/config-eslint/plugins/lit-a11y.js +6 -0
  41. package/packages/config-eslint/plugins/lit.js +10 -0
  42. package/packages/config-eslint/plugins/more.js +18 -0
  43. package/packages/config-eslint/plugins/no-await-in-promise.js +6 -0
  44. package/packages/config-eslint/plugins/no-constructor-bind.js +9 -0
  45. package/packages/config-eslint/plugins/no-explicit-type-exports.js +8 -0
  46. package/packages/config-eslint/plugins/no-inferred-method-name.js +8 -0
  47. package/packages/config-eslint/plugins/no-loops.js +8 -0
  48. package/packages/config-eslint/plugins/no-secrets.js +13 -0
  49. package/packages/config-eslint/plugins/no-use-extend-native.js +6 -0
  50. package/packages/config-eslint/plugins/nuxt.js +10 -0
  51. package/packages/config-eslint/plugins/optional/node.js +6 -0
  52. package/packages/config-eslint/plugins/prettier.js +25 -0
  53. package/packages/config-eslint/plugins/promise.js +11 -0
  54. package/packages/config-eslint/plugins/quasar.js +6 -0
  55. package/packages/config-eslint/plugins/regexp.js +8 -0
  56. package/packages/config-eslint/plugins/security.js +11 -0
  57. package/packages/config-eslint/plugins/simple-import-sort.js +9 -0
  58. package/packages/config-eslint/plugins/sonar.js +6 -0
  59. package/packages/config-eslint/plugins/sort-class-members.js +299 -0
  60. package/packages/config-eslint/plugins/sort-destructure-keys.js +11 -0
  61. package/packages/config-eslint/plugins/sort-keys-fix.js +8 -0
  62. package/packages/config-eslint/plugins/spellcheck.js +19 -0
  63. package/packages/config-eslint/plugins/sql.js +27 -0
  64. package/packages/config-eslint/plugins/tanstack-query.js +5 -0
  65. package/packages/config-eslint/plugins/testing-library.js +10 -0
  66. package/packages/config-eslint/plugins/typescript/allow-boolean-property-list.const.js +38 -0
  67. package/packages/config-eslint/plugins/typescript/boolean-prefixes.const.js +11 -0
  68. package/packages/config-eslint/plugins/typescript/english-verbs.const.js +3368 -0
  69. package/packages/config-eslint/plugins/typescript/index.js +154 -0
  70. package/packages/config-eslint/plugins/typescript-sort-keys.js +6 -0
  71. package/packages/config-eslint/plugins/unicorn.js +66 -0
  72. package/packages/config-eslint/plugins/unused-imports.js +18 -0
  73. package/packages/config-eslint/plugins/vitest.js +17 -0
  74. package/packages/config-eslint/plugins/vue-i18n.js +35 -0
  75. package/packages/config-eslint/plugins/vue.js +268 -0
  76. package/packages/config-eslint/plugins/vuejs-accessibility.js +21 -0
  77. package/packages/config-eslint/plugins/wc.js +6 -0
  78. package/packages/config-eslint/plugins/write-good-comments.js +9 -0
  79. package/packages/config-htmllint/CHANGELOG.md +7 -0
  80. package/packages/config-htmllint/README.md +20 -0
  81. package/packages/config-htmllint/index.js +30 -0
  82. package/packages/config-htmllint/package.json +39 -0
  83. package/packages/config-htmllint/test/html.html +335 -0
  84. package/packages/config-markdownlint/CHANGELOG.md +9 -0
  85. package/packages/config-markdownlint/README.md +16 -0
  86. package/packages/config-markdownlint/index.js +17 -0
  87. package/packages/config-markdownlint/package.json +37 -0
  88. package/packages/config-markdownlint/test/deepin-2.md +106 -0
  89. package/packages/config-npmlint/CHANGELOG.md +7 -0
  90. package/packages/config-npmlint/README.md +18 -0
  91. package/packages/config-npmlint/index.json +3 -0
  92. package/packages/config-npmlint/package.json +42 -0
  93. package/packages/config-prettier/CHANGELOG.md +7 -0
  94. package/packages/config-prettier/README.md +16 -0
  95. package/packages/config-prettier/index.js +31 -0
  96. package/packages/config-prettier/package.json +48 -0
  97. package/packages/config-prettier/plugins/jsdoc.js +6 -0
  98. package/packages/config-prettier/plugins/pug.js +7 -0
  99. package/packages/config-prettier/plugins/sort-json.js +4 -0
  100. package/packages/config-prettier/plugins/svelte.js +7 -0
  101. package/packages/config-prettier/plugins/xml.js +4 -0
  102. package/packages/config-prettier/test/Migrations.sol +19 -0
  103. package/packages/config-prettier/test/jsdoc.js +27 -0
  104. package/packages/config-prettier/test/json.json +28 -0
  105. package/packages/config-prettier/test/pug.jade +14 -0
  106. package/packages/config-prettier/test/ruby.example +13 -0
  107. package/packages/config-prettier/test/sql.sql +6 -0
  108. package/packages/config-prettier/test/svelte.svelte +20 -0
  109. package/packages/config-prettier/test/svg.svg +67 -0
  110. package/packages/config-prettier/test/twig.twig +17 -0
  111. package/packages/config-prettier/test/xml.xml +43 -0
  112. package/packages/config-stylelint/CHANGELOG.md +7 -0
  113. package/packages/config-stylelint/README.md +38 -0
  114. package/packages/config-stylelint/index.js +145 -0
  115. package/packages/config-stylelint/package.json +60 -0
  116. package/packages/config-stylelint/plugins/a11y.js +12 -0
  117. package/packages/config-stylelint/plugins/at-rule-no-children.js +13 -0
  118. package/packages/config-stylelint/plugins/color-format.js +10 -0
  119. package/packages/config-stylelint/plugins/declaration-block-no-ignored-properties.js +8 -0
  120. package/packages/config-stylelint/plugins/high-performance-animation.js +14 -0
  121. package/packages/config-stylelint/plugins/no-nested-media.js +8 -0
  122. package/packages/config-stylelint/plugins/no-unresolved-module.js +25 -0
  123. package/packages/config-stylelint/plugins/no-unsupported-browser-features.js +15 -0
  124. package/packages/config-stylelint/plugins/optional/gamut.js +8 -0
  125. package/packages/config-stylelint/plugins/optional/logical-css.js +10 -0
  126. package/packages/config-stylelint/plugins/optional/no-indistinguishable-colors.js +8 -0
  127. package/packages/config-stylelint/plugins/optional/use-logical-spec.js +8 -0
  128. package/packages/config-stylelint/plugins/order.js +486 -0
  129. package/packages/config-stylelint/plugins/prettier.js +8 -0
  130. package/packages/config-stylelint/plugins/scss.js +83 -0
  131. package/packages/config-stylelint/plugins/selector-no-empty.js +8 -0
  132. package/packages/config-stylelint/plugins/use-nesting.js +8 -0
  133. package/packages/config-stylelint/plugins/vue.js +5 -0
  134. package/packages/config-stylelint/test/button.scss +7 -0
  135. package/packages/config-stylelint/test/comp-vue.vue +36 -0
  136. package/packages/config-stylelint/test/logical.scss +35 -0
  137. package/packages/config-stylelint/test/scss.scss +457 -0
  138. package/packages/config-stylelint/test/tailwind.css +8 -0
  139. package/scripts/lint.sh +7 -5
  140. package/scripts/semver.sh +17 -4
  141. package/scripts/up.sh +24 -4
  142. package/scripts/init.sh +0 -46
  143. package/scripts/ou.sh +0 -45
  144. package/scripts/publish.sh +0 -5
  145. package/scripts/upgrade.sh +0 -19
  146. package/scripts/version.sh +0 -4
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@alexlit/config-htmllint",
3
+ "version": "1.0.1",
4
+ "private": false,
5
+ "description": "htmllint config",
6
+ "keywords": [
7
+ "config",
8
+ "html",
9
+ "htmllint",
10
+ "linthtml"
11
+ ],
12
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/alex-lit/lint-kit/issues"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/alex-lit/lint-kit.git",
19
+ "directory": "packages/config-htmllint"
20
+ },
21
+ "license": "MIT",
22
+ "author": "Alexey Litovchenko",
23
+ "maintainers": [
24
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
25
+ ],
26
+ "main": "index.js",
27
+ "files": [
28
+ "README.md",
29
+ "index.js"
30
+ ],
31
+ "scripts": {
32
+ "semver": "../../scripts/semver.sh",
33
+ "up": "../../scripts/up.sh"
34
+ },
35
+ "dependencies": {
36
+ "@linthtml/linthtml": "^0.9.5",
37
+ "@linthtml/linthtml-config-recommended": "^0.1.0"
38
+ }
39
+ }
@@ -0,0 +1,335 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>About</title>
5
+ <meta charset="utf-8" />
6
+ <meta name="format-detection" content="telephone=no" />
7
+ <link rel="icon" href="images/favicon.ico" type="image/x-icon" />
8
+ <link rel="stylesheet" href="css/grid.css" />
9
+ <link rel="stylesheet" href="css/style.css" />
10
+
11
+ <script src="js/jquery.js"></script>
12
+ <script src="js/jquery-migrate-1.2.1.js"></script>
13
+
14
+ <!--[if lt IE 9]>
15
+ <html class="lt-ie9">
16
+ <div style=' clear: both; text-align:center; position: relative;'>
17
+ <a href="http://windows.microsoft.com/en-US/internet-explorer/..">
18
+ <img src="images/ie8-panel/warning--bar--0000--us.jpg" border="0" height="42" width="820"
19
+ alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."/>
20
+ </a>
21
+ </div>
22
+ <script src="js/html5shiv.js"></script>
23
+ <![endif]-->
24
+
25
+ <script src="js/device.min.js"></script>
26
+ </head>
27
+
28
+ <body>
29
+ <div class="page">
30
+ <!--========================================================
31
+ HEADER
32
+ =========================================================-->
33
+ <header>
34
+ <div id="stuck-container" class="sdafsadf" alt="dsf">
35
+ <div class="container">
36
+ <div class="brand">
37
+ <h1 class="brand--name">
38
+ <a href="./">Cafe</a>
39
+ </h1>
40
+ </div>
41
+
42
+ <nav class="nav">
43
+ <ul class="sf-menu">
44
+ <li>
45
+ <a href="./">Home</a>
46
+ </li>
47
+ <li class="active">
48
+ <a href="index-1.html">About</a>
49
+ <ul>
50
+ <li>
51
+ <a href="#">Quisque nulla</a>
52
+ </li>
53
+ <li>
54
+ <a href="#">Vestibulum libero</a>
55
+ <ul>
56
+ <li>
57
+ <a href="#">Lorem</a>
58
+ </li>
59
+ <li>
60
+ <a href="#">Dolor</a>
61
+ </li>
62
+ <li>
63
+ <a href="#">Sit amet</a>
64
+ </li>
65
+ </ul>
66
+ </li>
67
+ <li>
68
+ <a href="#">Vivamus eget nibh</a>
69
+ </li>
70
+ </ul>
71
+ </li>
72
+ <li>
73
+ <a href="index-2.html">What We Do</a>
74
+ </li>
75
+ <li>
76
+ <a href="index-3.html">Menu</a>
77
+ </li>
78
+ <li>
79
+ <a href="index-4.html">Contacts</a>
80
+ </li>
81
+ </ul>
82
+ </nav>
83
+ </div>
84
+ </div>
85
+ </header>
86
+ <!--========================================================
87
+ CONTENT
88
+ =========================================================-->
89
+ <main>
90
+ <section class="well well--offset-3">
91
+ <div class="container">
92
+ <h2 bgcolor-sdf="red"><em>A Few</em>Words</h2>
93
+ <div class="row row--offset-2">
94
+ <div class="grid--6">
95
+ <p class="indents-3">
96
+ Integer convallis orci vel mi nelaoreet, at ornare lorem
97
+ consequat. Phasellus era nisl auctor vel veliterol.
98
+ sed,pharetra venenatis nulla. Vestibulum volutpatturpis ut
99
+ massa commodo, quis aliquam massa facilisis.Integer convavel
100
+ miberto merlonelaoreet, at ornare lorem consequat. Phasellus
101
+ era nisl auctor venenatis nulla. Vestibulum volutpat turpis ut
102
+ massa commodo, quis aliquam massa facilisis.<br /><br />Vestibulum
103
+ volutpat turpis ut massa commodo, quis aliquam massa
104
+ facilisis.Integer convavel mi nelaoreet, at ornare lorem
105
+ consequat. Phasellus era nisl auctor venenatis nullatibulum
106
+ volutpat turpis ut massa commodoquis
107
+ </p>
108
+ <div class="img">
109
+ <div class="lazy-img">
110
+ <img src="images/page-2--img01.jpg" alt=" " />
111
+ </div>
112
+ </div>
113
+ </div>
114
+ <div class="grid--6">
115
+ <p class="indents-3">
116
+ Integer convallis orci vel mi nelaoreet, at ornare lorem
117
+ consequat. Phasellus era nisl auctor vel veliterol.
118
+ sed,pharetra venenatis nulla. Vestibulum volutpatturpis ut
119
+ massa commodo, quis aliquam massa facilisis.Integer convavel
120
+ miberto merlonelaoreet, at ornare lorem consequat. Phasellus
121
+ era nisl auctor venenatis nulla. Vestibulum volutpat turpis ut
122
+ massa commodo, quis aliquam massa facilisis.<br /><br />Vestibulum
123
+ volutpat turpis ut massa commodo, quis aliquam massa
124
+ facilisis.Integer convavel mi nelaoreet, at ornare lorem
125
+ consequat. Phasellus era nisl auctor venenatis nullatibulum
126
+ volutpat turpis ut massa commodoquis
127
+ </p>
128
+ <div class="img">
129
+ <div class="lazy-img">
130
+ <img src="images/page-2--img02.jpg" alt="2" />
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </section>
137
+ <section class="parallax parallax2" data-parallax-speed="-0.4">
138
+ <div class="container">
139
+ <h2><em>Good Food </em>and Big Fun</h2>
140
+ <div class="row">
141
+ <div class="grid--6">
142
+ <p class="indents-3">
143
+ Integer convallis orci vel mi nelaoreet, at ornare lorem
144
+ consequat. Phasellus era nisl auctor vel veliterol.
145
+ sed,pharetra venenatis nulla. Vestibulum volutpatturpis ut
146
+ massa commodo, quis aliquam massa facilisis.Integer convavel
147
+ miberto merlonelaoreet, at ornare lorem consequat. Phasellus
148
+ era nisl auctor venenatis nulla. Vestibulum volutpat turpis ut
149
+ massa commodo, quis aliquam massa facilisis.<br /><br />Vestibulum
150
+ volutpat turpis ut massa commodo, quis aliquam massa
151
+ facilisis.Integer convavel mi nelaoreet, at ornare lorem
152
+ consequat. Phasellus era nisl auctor venenatis nullatibulum
153
+ volutpat turpis ut massa commodoquis
154
+ </p>
155
+ </div>
156
+ <div class="grid--6">
157
+ <p class="indents-3">
158
+ Onteger convallis orci vel mi nelaoreet, at ornare lorem
159
+ consequat. Phasellus era nisl auctor vel veliterol
160
+ sed,pharetra venenatis nulla. Vestibulum volutpat turpis ut
161
+ massa commodo, quis aliquam massa facilisis.Integer convallis
162
+ orci vel mi nelaoreet, at ornare lorem consequat. Phasellus
163
+ era nisl auctor vel veliterol. sed,pharetra venenatis
164
+ nulla.<br /><br />Vestibulum volutpat turpis ut massa commodo,
165
+ quis aliquam massa fertoli estibulum volutpat turpis ut massa
166
+ commodo, quis aliquam massa gertoli facilisis.Integer
167
+ convallis orci vel mi nelaoreet, at ornare lorem consequat.
168
+ Phasellus era nisl auctor vel veliterol sed,pharetra venenatis
169
+ nulla.
170
+ </p>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </section>
175
+ <section class="well well--offset-4">
176
+ <div class="container">
177
+ <h2><em>Why</em>Choose Us</h2>
178
+ <div class="row">
179
+ <div class="grid--4">
180
+ <h3>
181
+ Anteger convallis orci vel mi nelaoreet, at ornare lorem
182
+ consequat. Phasellus era nisl auctor vel veliterol.
183
+ sed,pharetra venenatis nulla.
184
+ </h3>
185
+ <p>
186
+ Vestibulum volutpatturpis ut massa commodo, quis aliquam massa
187
+ facilisis.Integer convavel miberto merlonelaoreet, at ornare
188
+ lorem consequat. Phasellus
189
+ </p>
190
+ </div>
191
+ <div class="grid--4">
192
+ <h3>
193
+ Genteger convallis orci vel mi nelaoreet, at ornare lorem
194
+ consequat. Phasellus era nisl auctor vel veliterol.
195
+ sed,pharetra venenatis nulla.
196
+ </h3>
197
+ <p>
198
+ Meestibulum volutpatturpis ut massa commodo, quis aliquam
199
+ massa facilisis.Integer convavel miberto merlonelaoreet, at
200
+ ornare lorem consequat. Phasellus
201
+ </p>
202
+ </div>
203
+ <div class="grid--4">
204
+ <h3>
205
+ Ternteger convallis orci vel mi nelaoreet, at ornare lorem
206
+ consequat. Phasellus era nisl auctor vel veliterol.
207
+ sed,pharetra venenatis nul.
208
+ </h3>
209
+ <p>
210
+ Testibulum volutpatturpis ut massa commodo, quis aliquam massa
211
+ facilisis.Integer convavel miberto merlonelaoreet, at ornare
212
+ lorem consequat. Phasellus
213
+ </p>
214
+ </div>
215
+ </div>
216
+ <div class="row">
217
+ <div class="grid--4">
218
+ <h3>
219
+ Onteger convallis orci vel mi nelaoreet, at ornare lorem
220
+ consequat. Phasellus era nisl auctor vel veliterol.
221
+ sed,pharetra venenatis nulla.
222
+ </h3>
223
+ <p>
224
+ Vestibulum volutpatturpis ut massa commodo, quis aliquam massa
225
+ facilisis.Integer convavel miberto merlonelaoreet, at ornare
226
+ lorem consequat. Phasellus
227
+ </p>
228
+ </div>
229
+ <div class="grid--4">
230
+ <h3>
231
+ Genteger convallis orci vel mi nelaoreet, at ornare lorem
232
+ consequat. Phasellus era nisl auctor vel veliterol.
233
+ sed,pharetra venenatis nulla.
234
+ </h3>
235
+ <p>
236
+ Meestibulum volutpatturpis ut massa commodo, quis aliquam
237
+ massa facilisis.Integer convavel miberto merlonelaoreet, at
238
+ ornare lorem consequat. Phasellus
239
+ </p>
240
+ </div>
241
+ <div class="grid--4">
242
+ <h3>
243
+ Ternteger convallis orci vel mi nelaoreet, at ornare lorem
244
+ consequat. Phasellus era nisl auctor vel veliterol.
245
+ sed,pharetra venenatis nul.
246
+ </h3>
247
+ <p>
248
+ Testibulum volutpatturpis ut massa commodo, quis aliquam massa
249
+ facilisis.Integer convavel miberto merlonelaoreet, at ornare
250
+ lorem consequat. Phasellus
251
+ </p>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </section>
256
+ <section class="parallax parallax3" data-parallax-speed="-0.4">
257
+ <div class="container">
258
+ <h2><em>Our Clients </em>Say</h2>
259
+ <div class="row">
260
+ <div class="grid--4">
261
+ <h3>
262
+ Integer convallis orci vel mi nelaoreet, at ornare lorem
263
+ consequat. Phasellus era nisl
264
+ </h3>
265
+ <p>
266
+ Vestibulum volutpat turpis ut massa commodo, quis aliquam
267
+ massa facilisis.Integer convallis orci vel mi nelaoreet, at
268
+ ornare lorem consequat. Phasellus era nisl auctor vel
269
+ veliterol. sed,pharetra venenatis nulla.
270
+ </p>
271
+ <p class="client"><em>Kate Tomson</em>Client</p>
272
+ </div>
273
+ <div class="grid--4">
274
+ <h3>
275
+ Oeteger convallis orci vel mi nelaoreet, at ornare lorem
276
+ consequat. Phasellus era nisl
277
+ </h3>
278
+ <p>
279
+ Vestibulum volutpat turpis ut massa commodo, quis aliquam
280
+ massa facilisis.Integer convallis orci vel mi nelaoreet, at
281
+ ornare lorem consequat. Phasellus era nisl auctor vel
282
+ veliterol. sed,pharetra venenatis nulla.
283
+ </p>
284
+ <p class="client"><em>Irma King</em>Client</p>
285
+ </div>
286
+ <div class="grid--4">
287
+ <h3>
288
+ Koteger convallis orci vel mi nelaoreet, at ornare lorem
289
+ consequat. Phasellus era nisl
290
+ </h3>
291
+ <p>
292
+ Vestibulum volutpat turpis ut massa commodo, quis aliquam
293
+ massa facilisis.Integer convallis orci vel mi nelaoreet, at
294
+ ornare lorem consequat. Phasellus era nisl auctor vel
295
+ veliterol. sed,pharetra venenatis nulla.
296
+ </p>
297
+ <p class="client"><em>Linda Herman</em>Client</p>
298
+ </div>
299
+ </div>
300
+ <div class="decoration"><a href="#" class="btn">Read more</a></div>
301
+ </div>
302
+ </section>
303
+ </main>
304
+
305
+ <!--========================================================
306
+ FOOTER
307
+ =========================================================-->
308
+ <a href="index.html">Link</a><button class="u2013">d</button>
309
+ <footer>
310
+ <div class="constainer">
311
+ <ul class="socials">
312
+ <button tabindex="-9">Button</button>
313
+ <li>
314
+ <a
315
+ href="#"
316
+ class="fa fa-facebook sdfs sadf asdf asdfas sadfasdf"
317
+ ></a>
318
+ </li>
319
+ <li><a href="#" class="fa fa-tumblr"></a></li>
320
+ <li><a href="#" class="fa fa-google-plus"></a></li>
321
+ </ul>
322
+ <div class="sdfdsfd">
323
+ © <span id="copyrightyearc"></span>
324
+ <a href="#">Privacy Policy</a>
325
+ </div>
326
+ </div>
327
+ <div class="tm">
328
+ <a href="#"><img src="images/TM--logo.png" alt="d" /></a>
329
+ </div>
330
+ </footer>
331
+ </div>
332
+
333
+ <script src="js/script.js"></script>
334
+ </body>
335
+ </html>
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [2.0.2](https://github.com/alex-lit/lint-kit/compare/v38.0.1...v2.0.2) (2023-10-20)
6
+
7
+ ### [2.0.1](https://github.com/alex-lit/lint-kit/compare/v9.0.1...v2.0.1) (2023-10-20)
8
+
9
+ ## [2.0.0](https://github.com/alex-lit/lint-kit/compare/v1.0.0...v2.0.0) (2023-10-20)
@@ -0,0 +1,16 @@
1
+ # MarkdownLint Configuration
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ npm i @alexlit/config-markdownlint -D
7
+ ```
8
+
9
+ ## Connection
10
+
11
+ ```js
12
+ // .markdownlintrc.js
13
+ module.exports = {
14
+ ...require('@alexlit/config-markdownlint'),
15
+ };
16
+ ```
@@ -0,0 +1,17 @@
1
+ module.exports = {
2
+ 'code-block-style': { style: 'fenced' },
3
+ 'code-fence-style': { style: 'backtick' },
4
+ default: true,
5
+ 'first-line-heading': false,
6
+
7
+ 'line-length': {
8
+ code_blocks: false,
9
+ headings: false,
10
+ strict: false,
11
+ tables: false,
12
+ },
13
+
14
+ 'no-inline-html': false,
15
+ 'ol-prefix': { style: 'ordered' },
16
+ 'ul-style': { style: 'dash' },
17
+ };
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@alexlit/config-markdownlint",
3
+ "version": "2.0.2",
4
+ "private": false,
5
+ "description": "markdownlint config",
6
+ "keywords": [
7
+ "markdownlint",
8
+ "config"
9
+ ],
10
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/alex-lit/lint-kit/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/alex-lit/lint-kit.git",
17
+ "directory": "packages/config-markdownlint"
18
+ },
19
+ "license": "MIT",
20
+ "author": "Alexey Litovchenko",
21
+ "maintainers": [
22
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
+ ],
24
+ "main": "index.js",
25
+ "files": [
26
+ "README.md",
27
+ "index.js"
28
+ ],
29
+ "scripts": {
30
+ "semver": "../../scripts/semver.sh",
31
+ "up": "../../scripts/up.sh"
32
+ },
33
+ "dependencies": {
34
+ "markdownlint": "^0.31.1",
35
+ "markdownlint-cli": "^0.37.0"
36
+ }
37
+ }
@@ -0,0 +1,106 @@
1
+ ---
2
+ title: Настройка дистрибутива Deepin
3
+ description: Изучите как использовать @nuxt/content.
4
+ ---
5
+
6
+ <!--more-->
7
+
8
+ ## Графический интерфейс настройки PulseAudiosd
9
+
10
+ Графический интерфейс настройки PulseAudiosd (например для настройки USB
11
+ гарнитуры) dsaf интерфейс настройки PulseAudio (например для настройки USB
12
+ гарнитуры) dsaf zxc zxc
13
+
14
+ ```bash
15
+ sudo apt install pavucontrol
16
+ ```
17
+
18
+ ```js {something=something}
19
+ console.log('hello world');
20
+ ```
21
+
22
+ Это простая сноска,[^1], а это более длинная сноска.[^bignote]
23
+
24
+ [^1]: Это первая сноска. [^bignote]: Это сноска с несколькими абзацами и кодом.
25
+
26
+ Добавим абзацы, чтобы включить их в сноску.
27
+
28
+ `{ мой код }`
29
+
30
+ Добавьте столько абзацев, сколько вам нужно.
31
+
32
+ ```js
33
+ const http = require('http');
34
+ const bodyParser = require('body-parser');
35
+
36
+ http
37
+ .createServer((req, res) => {
38
+ bodyParser.parse(req, (error, body) => {
39
+ res.end(body);
40
+ });
41
+ })
42
+ .listen(3000);
43
+ ```
44
+
45
+ ## Установка Docker (без docker-compose)
46
+
47
+ ```bash
48
+ https://gist.github.com/madkoding/3f9b02c431de5d748dfde6957b8b85ff
49
+
50
+ #!/bin/sh
51
+
52
+ # Shell script to add docker-ce to Deepin Linux repositories
53
+
54
+ # Remove old docker
55
+ sudo apt-get remove -y docker docker-engine docker.io containerd runc
56
+
57
+ # Install dependencies
58
+ sudo apt-get install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common sdasdfasdf
59
+
60
+ # Add GPG and fingerprint
61
+ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
62
+ sudo apt-key fingerprint 0EBFCD88
63
+
64
+ # Add debian repository in deepin sources list
65
+ printf 'deb [arch=amd64] https://download.docker.com/linux/debian stretch stable\n' \
66
+ | sudo tee /etc/apt/sources.list.d/docker-ce.list
67
+
68
+ # Update packages and install
69
+ sudo apt-get update -y
70
+ sudo apt-get install -y docker-ce
71
+
72
+ # Add current user to the docker users group (OPTIONAL)
73
+ sudo usermod -aG docker $(whoami)
74
+ ```
75
+
76
+ ## Обновление системы через терминал
77
+
78
+ ```bash
79
+ sudo apt-get update
80
+ sudo dpkg --configure -a
81
+ sudo apt-get dist-upgrade -y
82
+ ```
83
+
84
+ ## Добавление "Открыть как администратор" в контекстное меню
85
+
86
+ ```bash
87
+ sudo deepin-editor /usr/share/deepin/dde-file-manager/oem-menuextensions/openAsAdmin.desktop
88
+ ```
89
+
90
+ Вставить текст:
91
+
92
+ ```txt
93
+ [Desktop Entry]
94
+ Type=Application
95
+ Name=Open in new window as admin
96
+ X-DFM-MenuTypes=SingleFile;SingleDir
97
+ Exec=pkexec --disable-internal-agent /usr/bin/dde-file-manager -n %u
98
+ X-DFM-ExcludeMimeTypes=application/xml;
99
+ ```
100
+
101
+ После перезапустить файловый менеджер.
102
+
103
+ ## Сраный хром не подтягивает пароли
104
+
105
+ В директории ~/.config/google-chrome/Default удалить файлы Login Data, Login
106
+ Data-journal и Login Data 2-journal.
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [5.0.1](https://github.com/alex-lit/lint-kit/compare/v1.0.1...v5.0.1) (2023-10-20)
6
+
7
+ ## [5.0.0](https://github.com/alex-lit/lint-kit/compare/v2.0.0...v5.0.0) (2023-10-20)
@@ -0,0 +1,18 @@
1
+ # NPMLint Configuration
2
+
3
+ [npm-package-json-lint](https://github.com/tclindner/npm-package-json-lint)
4
+
5
+ ## Installation
6
+
7
+ ```sh
8
+ npm i @alexlit/config-npmlint -D
9
+ ```
10
+
11
+ ## Connection
12
+
13
+ ```json
14
+ // .npmpackagejsonlintrc.json
15
+ {
16
+ "extends": "@alexlit/config-npmlint"
17
+ }
18
+ ```
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "npm-package-json-lint-config-default"
3
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@alexlit/config-npmlint",
3
+ "version": "5.0.1",
4
+ "private": false,
5
+ "description": "npmlint config",
6
+ "keywords": [
7
+ "config",
8
+ "json",
9
+ "lint",
10
+ "npm",
11
+ "package",
12
+ "npmlint"
13
+ ],
14
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/alex-lit/lint-kit/issues"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/alex-lit/lint-kit.git",
21
+ "directory": "packages/config-npmlint"
22
+ },
23
+ "license": "MIT",
24
+ "author": "Alexey Litovchenko",
25
+ "maintainers": [
26
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
27
+ ],
28
+ "main": "index.json",
29
+ "files": [
30
+ "README.md",
31
+ "index.json"
32
+ ],
33
+ "scripts": {
34
+ "semver": "../../scripts/semver.sh",
35
+ "up": "../../scripts/up.sh"
36
+ },
37
+ "dependencies": {
38
+ "lockfile-lint": "^4.12.1",
39
+ "npm-package-json-lint": "^7.0.0",
40
+ "npm-package-json-lint-config-default": "^6.0.0"
41
+ }
42
+ }
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [14.0.1](https://github.com/alex-lit/lint-kit/compare/v1.0.1...v14.0.1) (2023-10-20)
6
+
7
+ ## [14.0.0](https://github.com/alex-lit/lint-kit/compare/v5.0.0...v14.0.0) (2023-10-20)
@@ -0,0 +1,16 @@
1
+ # Prettier Configuration
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ npm i @alexlit/config-prettier -D
7
+ ```
8
+
9
+ ## Connection
10
+
11
+ ```js
12
+ // .prettierrc.js
13
+ module.exports = {
14
+ ...require('@alexlit/config-prettier'),
15
+ };
16
+ ```