@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,675 @@
1
+ /* eslint-disable no-secrets/no-secrets */
2
+ module.exports = [
3
+ '{abc}',
4
+ '{abc}{xyz}',
5
+ '{array}',
6
+ '{array}{cc}',
7
+ '{document}',
8
+ '{equation}',
9
+ '{Essential',
10
+ '{figure}',
11
+ '{letter}',
12
+ '{plain}',
13
+ '{required author}',
14
+ '{required date}',
15
+ '{required title}',
16
+ 'AA',
17
+ 'acute',
18
+ 'address',
19
+ 'AE',
20
+ 'afterchapternum',
21
+ 'afterchaptertitle',
22
+ 'aleph',
23
+ 'alpha',
24
+ 'amalg',
25
+ 'and',
26
+ 'angle',
27
+ 'approx',
28
+ 'approxeq',
29
+ 'arccos',
30
+ 'arcsin',
31
+ 'arctan',
32
+ 'arg',
33
+ 'arrowvert',
34
+ 'ast',
35
+ 'asymp',
36
+ 'author',
37
+ 'backepsilon',
38
+ 'backprime',
39
+ 'backsim',
40
+ 'backsimeq',
41
+ 'backslash',
42
+ 'bar',
43
+ 'barwedge',
44
+ 'Bbbk',
45
+ 'because',
46
+ 'beforepartskip',
47
+ 'begin',
48
+ 'beta',
49
+ 'beth',
50
+ 'between',
51
+ 'bfseries',
52
+ 'bibliography',
53
+ 'bibliographystyle',
54
+ 'bigcap',
55
+ 'bigcirc',
56
+ 'bigcup',
57
+ 'bigodot',
58
+ 'bigoplus',
59
+ 'bigotimes',
60
+ 'bigsqcup',
61
+ 'bigstar',
62
+ 'bigtriangledown',
63
+ 'bigtriangleup',
64
+ 'biguplus',
65
+ 'bigvee',
66
+ 'bigwedge',
67
+ 'blacklozenge',
68
+ 'blacksquare',
69
+ 'blacktriangle',
70
+ 'blacktriangledown',
71
+ 'blacktriangleleft',
72
+ 'blacktriangleright',
73
+ 'boldmath',
74
+ 'bot',
75
+ 'bowtie',
76
+ 'Box',
77
+ 'boxdot',
78
+ 'boxminus',
79
+ 'boxplus',
80
+ 'boxtimes',
81
+ 'bracevert',
82
+ 'breve',
83
+ 'bullet',
84
+ 'bumpeq',
85
+ 'Cap',
86
+ 'caption',
87
+ 'captionnamefont',
88
+ 'captiontitlefont',
89
+ 'cc',
90
+ 'cdot',
91
+ 'cdots',
92
+ 'centerdot',
93
+ 'centering',
94
+ 'chapter',
95
+ 'chapterheadstart',
96
+ 'chaptername',
97
+ 'chapterstyle',
98
+ 'check',
99
+ 'checkandfixthelayout',
100
+ 'chi',
101
+ 'circ',
102
+ 'circeq',
103
+ 'circlearrowleft',
104
+ 'circlearrowright',
105
+ 'circledast',
106
+ 'circledcirc',
107
+ 'circleddash',
108
+ 'circledS',
109
+ 'closing',
110
+ 'clubsuit',
111
+ 'color',
112
+ 'colorlet',
113
+ 'complement',
114
+ 'cong',
115
+ 'coprod',
116
+ 'copyright',
117
+ 'cos',
118
+ 'cosh',
119
+ 'cot',
120
+ 'coth',
121
+ 'csc',
122
+ 'Cup',
123
+ 'curlyeqprec',
124
+ 'curlyeqsucc',
125
+ 'curlyvee',
126
+ 'curlywedge',
127
+ 'curvearrowleft',
128
+ 'curvearrowright',
129
+ 'dag',
130
+ 'dagger',
131
+ 'daleth',
132
+ 'dashleftarrow',
133
+ 'dashrightarrow',
134
+ 'dashv',
135
+ 'date',
136
+ 'ddag',
137
+ 'ddagger',
138
+ 'ddot',
139
+ 'ddots',
140
+ 'definecolor',
141
+ 'deg',
142
+ 'Delta',
143
+ 'det',
144
+ 'diagdown',
145
+ 'diagup',
146
+ 'diamond',
147
+ 'diamondsuit',
148
+ 'digamma',
149
+ 'dim',
150
+ 'div',
151
+ 'divideontimes',
152
+ 'documentclass',
153
+ 'documentstyle',
154
+ 'dot',
155
+ 'doteq',
156
+ 'doteqdot',
157
+ 'dotplus',
158
+ 'doublebarwedge',
159
+ 'downarrow',
160
+ 'downdownarrows',
161
+ 'downharpoonleft',
162
+ 'downharpoonright',
163
+ 'E',
164
+ 'edition',
165
+ 'ell',
166
+ 'em',
167
+ 'emph',
168
+ 'emptyset',
169
+ 'end',
170
+ 'endlist',
171
+ 'enquote',
172
+ 'epsilon',
173
+ 'eqcirc',
174
+ 'eqslantgtr',
175
+ 'eqslantless',
176
+ 'equiv',
177
+ 'eta',
178
+ 'eth',
179
+ 'exists',
180
+ 'exp',
181
+ 'fallingdotseq',
182
+ 'Finv',
183
+ 'flat',
184
+ 'footins',
185
+ 'footmarksep',
186
+ 'footmarkwidth',
187
+ 'footnote',
188
+ 'footnotemark',
189
+ 'footnoterule',
190
+ 'footnotesize',
191
+ 'footnotetext',
192
+ 'foottextfont',
193
+ 'forall',
194
+ 'frac',
195
+ 'frown',
196
+ 'fussy',
197
+ 'Game',
198
+ 'Gamma',
199
+ 'gcd',
200
+ 'geq',
201
+ 'geqq',
202
+ 'geqslant',
203
+ 'gg',
204
+ 'ggg',
205
+ 'gimel',
206
+ 'gnapprox',
207
+ 'gneq',
208
+ 'gneqq',
209
+ 'gnsim',
210
+ 'grave',
211
+ 'gtrapprox',
212
+ 'gtrdot',
213
+ 'gtreqless',
214
+ 'gtreqqless',
215
+ 'gtrless',
216
+ 'gtrsim',
217
+ 'gvertneqq',
218
+ 'hat',
219
+ 'hbar',
220
+ 'headwidth',
221
+ 'heartsuit',
222
+ 'hom',
223
+ 'hookleftarrow',
224
+ 'hookrightarrow',
225
+ 'hskip',
226
+ 'hslash',
227
+ 'huge',
228
+ 'Im',
229
+ 'imath',
230
+ 'in',
231
+ 'inf',
232
+ 'infty',
233
+ 'input',
234
+ 'int',
235
+ 'intercal',
236
+ 'iota',
237
+ 'ip',
238
+ 'item',
239
+ 'itshape',
240
+ 'jmath',
241
+ 'Join',
242
+ 'kappa',
243
+ 'ker',
244
+ 'l',
245
+ 'label',
246
+ 'lambda',
247
+ 'langle',
248
+ 'large',
249
+ 'LaTeX',
250
+ 'LaTeXe',
251
+ 'lceil',
252
+ 'ldots',
253
+ 'left',
254
+ 'Leftarrow',
255
+ 'leftarrowtail',
256
+ 'leftharpoondown',
257
+ 'leftharpoonup',
258
+ 'leftleftarrows',
259
+ 'leftmargin',
260
+ 'leftrightarrow',
261
+ 'leftrightarrows',
262
+ 'leftrightharpoons',
263
+ 'leftrightsquigarrow',
264
+ 'leftskip',
265
+ 'leftthreetimes',
266
+ 'leq',
267
+ 'leqq',
268
+ 'leqslant',
269
+ 'lessapprox',
270
+ 'lessdot',
271
+ 'lesseqgtr',
272
+ 'lesseqqgtr',
273
+ 'lessgtr',
274
+ 'lesssim',
275
+ 'lfloor',
276
+ 'lg',
277
+ 'lgroup',
278
+ 'lhd',
279
+ 'lim',
280
+ 'liminf',
281
+ 'limsup',
282
+ 'list',
283
+ 'll',
284
+ 'llcorner',
285
+ 'Lleftarrow',
286
+ 'lll',
287
+ 'lmoustache',
288
+ 'ln',
289
+ 'lnapprox',
290
+ 'lneq',
291
+ 'lneqq',
292
+ 'lnsim',
293
+ 'log',
294
+ 'longleftarrow',
295
+ 'longleftrightarrow',
296
+ 'longmapsto',
297
+ 'longrightarrow',
298
+ 'looparrowleft',
299
+ 'looparrowright',
300
+ 'lozenge',
301
+ 'lrcorner',
302
+ 'Lsh',
303
+ 'lstset',
304
+ 'ltimes',
305
+ 'lvertneqq',
306
+ 'makechapterstyle',
307
+ 'makeheadrule',
308
+ 'makeoddfoot',
309
+ 'makeoddhead',
310
+ 'makepagestyle',
311
+ 'maketitle',
312
+ 'mapsto',
313
+ 'mathbf',
314
+ 'mathcal',
315
+ 'max',
316
+ 'mbox',
317
+ 'mdseries',
318
+ 'measuredangle',
319
+ 'mho',
320
+ 'mid',
321
+ 'midsloppy',
322
+ 'min',
323
+ 'models',
324
+ 'mp',
325
+ 'mu',
326
+ 'multimap',
327
+ 'nabla',
328
+ 'natural',
329
+ 'ncong',
330
+ 'nearrow',
331
+ 'neg',
332
+ 'neq',
333
+ 'newcommand',
334
+ 'newpage',
335
+ 'nexists',
336
+ 'ngeq',
337
+ 'ngeqq',
338
+ 'ngeqslant',
339
+ 'ngtr',
340
+ 'ni',
341
+ 'nleftarrow',
342
+ 'nleftrightarrow',
343
+ 'nleq',
344
+ 'nleqq',
345
+ 'nleqslant',
346
+ 'nless',
347
+ 'nmid',
348
+ 'node',
349
+ 'noindent',
350
+ 'normalfont',
351
+ 'normalsize',
352
+ 'nparallel',
353
+ 'nprec',
354
+ 'npreceq',
355
+ 'nRightarrow',
356
+ 'nshortmid',
357
+ 'nshortparallel',
358
+ 'nsim',
359
+ 'nsubseteq',
360
+ 'nsucc',
361
+ 'nsucceq',
362
+ 'nsupseteq',
363
+ 'nsupseteqq',
364
+ 'ntriangleleft',
365
+ 'ntrianglelefteq',
366
+ 'ntriangleright',
367
+ 'ntrianglerighteq',
368
+ 'nu',
369
+ 'null',
370
+ 'nvDash',
371
+ 'nwarrow',
372
+ 'o',
373
+ 'odot',
374
+ 'oe',
375
+ 'oint',
376
+ 'omega',
377
+ 'ominus',
378
+ 'onelineskip',
379
+ 'opening',
380
+ 'oplus',
381
+ 'oslash',
382
+ 'otimes',
383
+ 'overbrace',
384
+ 'overleftarrow',
385
+ 'overline',
386
+ 'overrightarrow',
387
+ 'P',
388
+ 'pagestyle',
389
+ 'par',
390
+ 'paragraph',
391
+ 'parallel',
392
+ 'parindent',
393
+ 'part',
394
+ 'partial',
395
+ 'partnamefont',
396
+ 'partnumfont',
397
+ 'parttitlefont',
398
+ 'perp',
399
+ 'phi',
400
+ 'pi',
401
+ 'pitchfork',
402
+ 'pm',
403
+ 'pounds',
404
+ 'Pr',
405
+ 'prec',
406
+ 'precapprox',
407
+ 'preccurlyeq',
408
+ 'preceq',
409
+ 'precnapprox',
410
+ 'precnsim',
411
+ 'precsim',
412
+ 'prime',
413
+ 'printchaptername',
414
+ 'printchapternum',
415
+ 'printchaptertitle',
416
+ 'prod',
417
+ 'propto',
418
+ 'psi',
419
+ 'quad',
420
+ 'raggedright',
421
+ 'rangle',
422
+ 'rceil',
423
+ 'Re',
424
+ 'relax',
425
+ 'renewcommand',
426
+ 'renewenvironment',
427
+ 'rfloor',
428
+ 'rgroup',
429
+ 'rhd',
430
+ 'rho',
431
+ 'Richard',
432
+ 'right',
433
+ 'rightarrow',
434
+ 'rightarrowtail',
435
+ 'rightharpoondown',
436
+ 'rightharpoonup',
437
+ 'rightleftarrows',
438
+ 'rightleftharpoons',
439
+ 'rightrightarrows',
440
+ 'rightsquigarrow',
441
+ 'rightthreetimes',
442
+ 'risingdotseq',
443
+ 'rmfamily',
444
+ 'rmoustache',
445
+ 'Rsh',
446
+ 'rtimes',
447
+ 'S',
448
+ 'scriptsize',
449
+ 'scshape',
450
+ 'searrow',
451
+ 'sec',
452
+ 'section',
453
+ 'setaftersecskip',
454
+ 'setaftersubsecskip',
455
+ 'setaftersubsubsecskip',
456
+ 'setbeforesecskip',
457
+ 'setbeforesubsecskip',
458
+ 'setbeforesubsubsecskip',
459
+ 'sethangfrom',
460
+ 'setheaderspaces',
461
+ 'setheadfoot',
462
+ 'setlength',
463
+ 'setlrmarginsandblock',
464
+ 'setminus',
465
+ 'setsecheadstyle',
466
+ 'setstocksize',
467
+ 'setsubsecheadstyle',
468
+ 'setsubsubsecheadstyle',
469
+ 'settrimmedsize',
470
+ 'setulmarginsandblock',
471
+ 'sffamily',
472
+ 'sharp',
473
+ 'shortmid',
474
+ 'shortparallel',
475
+ 'Sigma',
476
+ 'signature',
477
+ 'sim',
478
+ 'simeq',
479
+ 'sin',
480
+ 'sinh',
481
+ 'skip',
482
+ 'sloppy',
483
+ 'slshape',
484
+ 'small',
485
+ 'smallfrown',
486
+ 'smallsetminus',
487
+ 'smallsmile',
488
+ 'smile',
489
+ 'spadesuit',
490
+ 'sphericalangle',
491
+ 'sqcap',
492
+ 'sqcup',
493
+ 'sqrt',
494
+ 'sqsubset',
495
+ 'sqsubseteq',
496
+ 'sqsupset',
497
+ 'sqsupseteq',
498
+ 'square',
499
+ 'ss',
500
+ 'star',
501
+ 'stockheight',
502
+ 'stockwidth',
503
+ 'subparagraph',
504
+ 'subsection',
505
+ 'subset',
506
+ 'subseteq',
507
+ 'subseteqq',
508
+ 'subsetneq',
509
+ 'subsetneqq',
510
+ 'subsubsection',
511
+ 'succ',
512
+ 'succapprox',
513
+ 'succcurlyeq',
514
+ 'succeq',
515
+ 'succnapprox',
516
+ 'succnsim',
517
+ 'succsim',
518
+ 'sum',
519
+ 'sum_',
520
+ 'sup',
521
+ 'Supset',
522
+ 'supseteq',
523
+ 'supseteqq',
524
+ 'supsetneq',
525
+ 'supsetneqq',
526
+ 'surd',
527
+ 'swarrow',
528
+ 'tableofcontents',
529
+ 'tan',
530
+ 'tanh',
531
+ 'tau',
532
+ 'TeX',
533
+ 'text',
534
+ 'textbf',
535
+ 'textcircled',
536
+ 'textcite',
537
+ 'textcolor',
538
+ 'textheight',
539
+ 'textit',
540
+ 'textmd',
541
+ 'textnormal',
542
+ 'textquote',
543
+ 'textrm',
544
+ 'textsc',
545
+ 'textsf',
546
+ 'textsl',
547
+ 'texttt',
548
+ 'textup',
549
+ 'textwidth',
550
+ 'theauthor',
551
+ 'thechapter',
552
+ 'thelastpage',
553
+ 'thepage',
554
+ 'therefore',
555
+ 'Theta',
556
+ 'thetitle',
557
+ 'thickapprox',
558
+ 'thicksim',
559
+ 'ThisCenterWallPaper',
560
+ 'thispagestyle',
561
+ 'tilde',
562
+ 'times',
563
+ 'tiny',
564
+ 'title',
565
+ 'top',
566
+ 'triangle',
567
+ 'triangledown',
568
+ 'triangleleft',
569
+ 'trianglelefteq',
570
+ 'triangleq',
571
+ 'triangleright',
572
+ 'trianglerighteq',
573
+ 'ttfamily',
574
+ 'twoheadleftarrow',
575
+ 'twoheadrightarrow',
576
+ 'ulcorner',
577
+ 'underbrace',
578
+ 'underline',
579
+ 'unlhd',
580
+ 'unrhd',
581
+ 'uparrow',
582
+ 'updownarrow',
583
+ 'upharpoonleft',
584
+ 'upharpoonright',
585
+ 'uplus',
586
+ 'upshape',
587
+ 'Upsilon',
588
+ 'upuparrows',
589
+ 'urcorner',
590
+ 'usepackage',
591
+ 'varepsilon',
592
+ 'varkappa',
593
+ 'varnothing',
594
+ 'varphi',
595
+ 'varpi',
596
+ 'varpropto',
597
+ 'varrho',
598
+ 'varsigma',
599
+ 'varsubsetneq',
600
+ 'varsubsetneqq',
601
+ 'varsupsetneq',
602
+ 'varsupsetneqq',
603
+ 'vartheta',
604
+ 'vartriangle',
605
+ 'vartriangleleft',
606
+ 'vartriangleright',
607
+ 'vDash',
608
+ 'vdots',
609
+ 'vec',
610
+ 'vee',
611
+ 'veebar',
612
+ 'vrule',
613
+ 'vskip',
614
+ 'vskip3',
615
+ 'vspace',
616
+ 'Vvdash',
617
+ 'wedge',
618
+ 'widehat',
619
+ 'widetilde',
620
+ 'wp',
621
+ 'wr',
622
+ 'Xi',
623
+ 'zeta',
624
+ 'abbrev',
625
+ 'alpha',
626
+ 'alsodigit',
627
+ 'alsoletter',
628
+ 'alsoother',
629
+ 'amsmath',
630
+ 'article',
631
+ 'backref',
632
+ 'book',
633
+ 'bookmarksnumbered',
634
+ 'bookmarksopen',
635
+ 'breaklinks',
636
+ 'center',
637
+ 'colorlinks',
638
+ 'commentstyle',
639
+ 'description',
640
+ 'enumerate',
641
+ 'fontenc',
642
+ 'footnotesize',
643
+ 'hline',
644
+ 'hyperref',
645
+ 'identifierstyle',
646
+ 'inputenc',
647
+ 'interword',
648
+ 'itemize',
649
+ 'itemnum',
650
+ 'latextemplates',
651
+ 'letter',
652
+ 'littlered',
653
+ 'mdframed',
654
+ 'microtype',
655
+ 'morekeywords',
656
+ 'multiline',
657
+ 'oneside',
658
+ 'pdfborder',
659
+ 'plain',
660
+ 'punct',
661
+ 'quotation',
662
+ 'quote',
663
+ 'report',
664
+ 'tabular',
665
+ 'tikz',
666
+ 'tikzpicture',
667
+ 'titlepage',
668
+ 'twocolumn',
669
+ 'twoside',
670
+ 'unsrt',
671
+ 'verbatium',
672
+ 'xelatex',
673
+ 'xshift',
674
+ 'yshift ',
675
+ ];