@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.
- package/.lintstagedrc.js +1 -2
- package/.markdownlintrc.js +1 -1
- package/.stylelintrc.js +1 -4
- package/README.md +1 -1
- package/package.json +16 -14
- package/packages/config-commitlint/CHANGELOG.md +7 -0
- package/packages/config-commitlint/README.md +28 -0
- package/packages/config-commitlint/index.js +3 -0
- package/packages/config-commitlint/package.json +38 -0
- package/packages/config-eslint/CHANGELOG.md +37 -0
- package/packages/config-eslint/README.md +69 -0
- package/packages/config-eslint/TODO.md +6 -0
- package/packages/config-eslint/dictionaries/index.js +462 -0
- package/packages/config-eslint/dictionaries/programming/bash.js +25 -0
- package/packages/config-eslint/dictionaries/programming/django.js +2345 -0
- package/packages/config-eslint/dictionaries/programming/elixir.js +64 -0
- package/packages/config-eslint/dictionaries/programming/go.js +7748 -0
- package/packages/config-eslint/dictionaries/programming/java.js +33527 -0
- package/packages/config-eslint/dictionaries/programming/latex.js +675 -0
- package/packages/config-eslint/dictionaries/programming/lua.js +394 -0
- package/packages/config-eslint/dictionaries/programming/php.js +9788 -0
- package/packages/config-eslint/dictionaries/programming/python.js +367 -0
- package/packages/config-eslint/dictionaries/programming/ruby.js +357 -0
- package/packages/config-eslint/dictionaries/programming/rust.js +115 -0
- package/packages/config-eslint/dictionaries/programming/scala.js +2755 -0
- package/packages/config-eslint/dictionaries/specialized/html-symbol-entities.js +1118 -0
- package/packages/config-eslint/dictionaries/specialized/lorem-ipsum.js +359 -0
- package/packages/config-eslint/index.js +225 -0
- package/packages/config-eslint/package.json +87 -0
- package/packages/config-eslint/plugins/array-func.js +21 -0
- package/packages/config-eslint/plugins/compat.js +8 -0
- package/packages/config-eslint/plugins/decorator-position.js +16 -0
- package/packages/config-eslint/plugins/eslint-comments.js +10 -0
- package/packages/config-eslint/plugins/etc.js +14 -0
- package/packages/config-eslint/plugins/ext.js +13 -0
- package/packages/config-eslint/plugins/filenames.js +39 -0
- package/packages/config-eslint/plugins/import.js +72 -0
- package/packages/config-eslint/plugins/jsdoc.js +33 -0
- package/packages/config-eslint/plugins/jsx-a11y.js +6 -0
- package/packages/config-eslint/plugins/lit-a11y.js +6 -0
- package/packages/config-eslint/plugins/lit.js +10 -0
- package/packages/config-eslint/plugins/more.js +18 -0
- package/packages/config-eslint/plugins/no-await-in-promise.js +6 -0
- package/packages/config-eslint/plugins/no-constructor-bind.js +9 -0
- package/packages/config-eslint/plugins/no-explicit-type-exports.js +8 -0
- package/packages/config-eslint/plugins/no-inferred-method-name.js +8 -0
- package/packages/config-eslint/plugins/no-loops.js +8 -0
- package/packages/config-eslint/plugins/no-secrets.js +13 -0
- package/packages/config-eslint/plugins/no-use-extend-native.js +6 -0
- package/packages/config-eslint/plugins/nuxt.js +10 -0
- package/packages/config-eslint/plugins/optional/node.js +6 -0
- package/packages/config-eslint/plugins/prettier.js +25 -0
- package/packages/config-eslint/plugins/promise.js +11 -0
- package/packages/config-eslint/plugins/quasar.js +6 -0
- package/packages/config-eslint/plugins/regexp.js +8 -0
- package/packages/config-eslint/plugins/security.js +11 -0
- package/packages/config-eslint/plugins/simple-import-sort.js +9 -0
- package/packages/config-eslint/plugins/sonar.js +6 -0
- package/packages/config-eslint/plugins/sort-class-members.js +299 -0
- package/packages/config-eslint/plugins/sort-destructure-keys.js +11 -0
- package/packages/config-eslint/plugins/sort-keys-fix.js +8 -0
- package/packages/config-eslint/plugins/spellcheck.js +19 -0
- package/packages/config-eslint/plugins/sql.js +27 -0
- package/packages/config-eslint/plugins/tanstack-query.js +5 -0
- package/packages/config-eslint/plugins/testing-library.js +10 -0
- package/packages/config-eslint/plugins/typescript/allow-boolean-property-list.const.js +38 -0
- package/packages/config-eslint/plugins/typescript/boolean-prefixes.const.js +11 -0
- package/packages/config-eslint/plugins/typescript/english-verbs.const.js +3368 -0
- package/packages/config-eslint/plugins/typescript/index.js +154 -0
- package/packages/config-eslint/plugins/typescript-sort-keys.js +6 -0
- package/packages/config-eslint/plugins/unicorn.js +66 -0
- package/packages/config-eslint/plugins/unused-imports.js +18 -0
- package/packages/config-eslint/plugins/vitest.js +17 -0
- package/packages/config-eslint/plugins/vue-i18n.js +35 -0
- package/packages/config-eslint/plugins/vue.js +268 -0
- package/packages/config-eslint/plugins/vuejs-accessibility.js +21 -0
- package/packages/config-eslint/plugins/wc.js +6 -0
- package/packages/config-eslint/plugins/write-good-comments.js +9 -0
- package/packages/config-htmllint/CHANGELOG.md +7 -0
- package/packages/config-htmllint/README.md +20 -0
- package/packages/config-htmllint/index.js +30 -0
- package/packages/config-htmllint/package.json +39 -0
- package/packages/config-htmllint/test/html.html +335 -0
- package/packages/config-markdownlint/CHANGELOG.md +9 -0
- package/packages/config-markdownlint/README.md +16 -0
- package/packages/config-markdownlint/index.js +17 -0
- package/packages/config-markdownlint/package.json +37 -0
- package/packages/config-markdownlint/test/deepin-2.md +106 -0
- package/packages/config-npmlint/CHANGELOG.md +7 -0
- package/packages/config-npmlint/README.md +18 -0
- package/packages/config-npmlint/index.json +3 -0
- package/packages/config-npmlint/package.json +42 -0
- package/packages/config-prettier/CHANGELOG.md +7 -0
- package/packages/config-prettier/README.md +16 -0
- package/packages/config-prettier/index.js +31 -0
- package/packages/config-prettier/package.json +48 -0
- package/packages/config-prettier/plugins/jsdoc.js +6 -0
- package/packages/config-prettier/plugins/pug.js +7 -0
- package/packages/config-prettier/plugins/sort-json.js +4 -0
- package/packages/config-prettier/plugins/svelte.js +7 -0
- package/packages/config-prettier/plugins/xml.js +4 -0
- package/packages/config-prettier/test/Migrations.sol +19 -0
- package/packages/config-prettier/test/jsdoc.js +27 -0
- package/packages/config-prettier/test/json.json +28 -0
- package/packages/config-prettier/test/pug.jade +14 -0
- package/packages/config-prettier/test/ruby.example +13 -0
- package/packages/config-prettier/test/sql.sql +6 -0
- package/packages/config-prettier/test/svelte.svelte +20 -0
- package/packages/config-prettier/test/svg.svg +67 -0
- package/packages/config-prettier/test/twig.twig +17 -0
- package/packages/config-prettier/test/xml.xml +43 -0
- package/packages/config-stylelint/CHANGELOG.md +7 -0
- package/packages/config-stylelint/README.md +38 -0
- package/packages/config-stylelint/index.js +145 -0
- package/packages/config-stylelint/package.json +60 -0
- package/packages/config-stylelint/plugins/a11y.js +12 -0
- package/packages/config-stylelint/plugins/at-rule-no-children.js +13 -0
- package/packages/config-stylelint/plugins/color-format.js +10 -0
- package/packages/config-stylelint/plugins/declaration-block-no-ignored-properties.js +8 -0
- package/packages/config-stylelint/plugins/high-performance-animation.js +14 -0
- package/packages/config-stylelint/plugins/no-nested-media.js +8 -0
- package/packages/config-stylelint/plugins/no-unresolved-module.js +25 -0
- package/packages/config-stylelint/plugins/no-unsupported-browser-features.js +15 -0
- package/packages/config-stylelint/plugins/optional/gamut.js +8 -0
- package/packages/config-stylelint/plugins/optional/logical-css.js +10 -0
- package/packages/config-stylelint/plugins/optional/no-indistinguishable-colors.js +8 -0
- package/packages/config-stylelint/plugins/optional/use-logical-spec.js +8 -0
- package/packages/config-stylelint/plugins/order.js +486 -0
- package/packages/config-stylelint/plugins/prettier.js +8 -0
- package/packages/config-stylelint/plugins/scss.js +83 -0
- package/packages/config-stylelint/plugins/selector-no-empty.js +8 -0
- package/packages/config-stylelint/plugins/use-nesting.js +8 -0
- package/packages/config-stylelint/plugins/vue.js +5 -0
- package/packages/config-stylelint/test/button.scss +7 -0
- package/packages/config-stylelint/test/comp-vue.vue +36 -0
- package/packages/config-stylelint/test/logical.scss +35 -0
- package/packages/config-stylelint/test/scss.scss +457 -0
- package/packages/config-stylelint/test/tailwind.css +8 -0
- package/scripts/lint.sh +7 -5
- package/scripts/semver.sh +17 -4
- package/scripts/up.sh +24 -4
- package/scripts/init.sh +0 -46
- package/scripts/ou.sh +0 -45
- package/scripts/publish.sh +0 -5
- package/scripts/upgrade.sh +0 -19
- package/scripts/version.sh +0 -4
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
/* eslint-disable no-secrets/no-secrets */
|
|
2
|
+
module.exports = [
|
|
3
|
+
'___class__',
|
|
4
|
+
'__abs__',
|
|
5
|
+
'__add__',
|
|
6
|
+
'__aenter__',
|
|
7
|
+
'__aexit__',
|
|
8
|
+
'__aiter__',
|
|
9
|
+
'__all__',
|
|
10
|
+
'__and__',
|
|
11
|
+
'__anext__',
|
|
12
|
+
'__bases__',
|
|
13
|
+
'__build_class__',
|
|
14
|
+
'__builtin__',
|
|
15
|
+
'__call__',
|
|
16
|
+
'__complex__',
|
|
17
|
+
'__contains__',
|
|
18
|
+
'__debug__',
|
|
19
|
+
'__del__',
|
|
20
|
+
'__delattr__',
|
|
21
|
+
'__delete__',
|
|
22
|
+
'__delitem__',
|
|
23
|
+
'__dict__',
|
|
24
|
+
'__dir__',
|
|
25
|
+
'__div__',
|
|
26
|
+
'__divmod__',
|
|
27
|
+
'__doc__',
|
|
28
|
+
'__enter__',
|
|
29
|
+
'__eq__',
|
|
30
|
+
'__exit__',
|
|
31
|
+
'__file__',
|
|
32
|
+
'__float__',
|
|
33
|
+
'__floordiv__',
|
|
34
|
+
'__future__',
|
|
35
|
+
'__ge__',
|
|
36
|
+
'__get__',
|
|
37
|
+
'__getattr__',
|
|
38
|
+
'__getattribute__',
|
|
39
|
+
'__getitem__',
|
|
40
|
+
'__gt__',
|
|
41
|
+
'__hash__',
|
|
42
|
+
'__hex__',
|
|
43
|
+
'__iadd__',
|
|
44
|
+
'__iand__',
|
|
45
|
+
'__ifloordiv__',
|
|
46
|
+
'__ilshift__',
|
|
47
|
+
'__imatmul__',
|
|
48
|
+
'__imod__',
|
|
49
|
+
'__import__',
|
|
50
|
+
'__imul__',
|
|
51
|
+
'__index__',
|
|
52
|
+
'__init__',
|
|
53
|
+
'__int__',
|
|
54
|
+
'__invert__',
|
|
55
|
+
'__ipow__',
|
|
56
|
+
'__irshift__',
|
|
57
|
+
'__isub__',
|
|
58
|
+
'__iter__',
|
|
59
|
+
'__itruediv__',
|
|
60
|
+
'__ixor__',
|
|
61
|
+
'__le__',
|
|
62
|
+
'__len__',
|
|
63
|
+
'__length_hint__',
|
|
64
|
+
'__loader__',
|
|
65
|
+
'__long__',
|
|
66
|
+
'__lshift__',
|
|
67
|
+
'__lt__',
|
|
68
|
+
'__main__',
|
|
69
|
+
'__matmul__',
|
|
70
|
+
'__metaclass__',
|
|
71
|
+
'__missing__',
|
|
72
|
+
'__mod__',
|
|
73
|
+
'__module__',
|
|
74
|
+
'__mul__',
|
|
75
|
+
'__name__',
|
|
76
|
+
'__ne__',
|
|
77
|
+
'__neg__',
|
|
78
|
+
'__new__',
|
|
79
|
+
'__nonzero__',
|
|
80
|
+
'__oct__',
|
|
81
|
+
'__or__',
|
|
82
|
+
'__package__',
|
|
83
|
+
'__pos__',
|
|
84
|
+
'__pow__',
|
|
85
|
+
'__pycache__',
|
|
86
|
+
'__radd__',
|
|
87
|
+
'__rdivmod__',
|
|
88
|
+
'__repr__',
|
|
89
|
+
'__reversed__',
|
|
90
|
+
'__rfloordiv__',
|
|
91
|
+
'__rlshift__',
|
|
92
|
+
'__rmatmul__',
|
|
93
|
+
'__rmod__',
|
|
94
|
+
'__rmul__',
|
|
95
|
+
'__rpow__',
|
|
96
|
+
'__rrshift__',
|
|
97
|
+
'__rshift__',
|
|
98
|
+
'__rsub__',
|
|
99
|
+
'__rtruediv__',
|
|
100
|
+
'__rxor__',
|
|
101
|
+
'__set__',
|
|
102
|
+
'__setattr__',
|
|
103
|
+
'__setitem__',
|
|
104
|
+
'__slots__',
|
|
105
|
+
'__spec__',
|
|
106
|
+
'__str__',
|
|
107
|
+
'__sub__',
|
|
108
|
+
'__subclasses__',
|
|
109
|
+
'__truediv__',
|
|
110
|
+
'__unicode__',
|
|
111
|
+
'__xor__',
|
|
112
|
+
'abs',
|
|
113
|
+
'all',
|
|
114
|
+
'and',
|
|
115
|
+
'any',
|
|
116
|
+
'appdata',
|
|
117
|
+
'argparse',
|
|
118
|
+
'arithmeticerror',
|
|
119
|
+
'as',
|
|
120
|
+
'ascii',
|
|
121
|
+
'assert',
|
|
122
|
+
'assertionerror',
|
|
123
|
+
'attributeerror',
|
|
124
|
+
'autoreset',
|
|
125
|
+
'baseexception',
|
|
126
|
+
'bin',
|
|
127
|
+
'blockingioerror',
|
|
128
|
+
'bool',
|
|
129
|
+
'break',
|
|
130
|
+
'brokenpipeerror',
|
|
131
|
+
'buffererror',
|
|
132
|
+
'builtins',
|
|
133
|
+
'bytearray',
|
|
134
|
+
'bytes',
|
|
135
|
+
'byteswarning',
|
|
136
|
+
'callable',
|
|
137
|
+
'childprocesserror',
|
|
138
|
+
'chmod',
|
|
139
|
+
'chown',
|
|
140
|
+
'chr',
|
|
141
|
+
'class',
|
|
142
|
+
'classmethod',
|
|
143
|
+
'colorama',
|
|
144
|
+
'compile',
|
|
145
|
+
'complex',
|
|
146
|
+
'connectionabortederror',
|
|
147
|
+
'connectionerror',
|
|
148
|
+
'connectionrefusederror',
|
|
149
|
+
'connectionreseterror',
|
|
150
|
+
'continue',
|
|
151
|
+
'copyright',
|
|
152
|
+
'credits',
|
|
153
|
+
'curses',
|
|
154
|
+
'dedent',
|
|
155
|
+
'def',
|
|
156
|
+
'del',
|
|
157
|
+
'delattr',
|
|
158
|
+
'deprecationwarning',
|
|
159
|
+
'dict',
|
|
160
|
+
'dir',
|
|
161
|
+
'divmod',
|
|
162
|
+
'elif',
|
|
163
|
+
'ellipsis',
|
|
164
|
+
'else',
|
|
165
|
+
'enumerate',
|
|
166
|
+
'environmenterror',
|
|
167
|
+
'eoferror',
|
|
168
|
+
'etree',
|
|
169
|
+
'eval',
|
|
170
|
+
'except',
|
|
171
|
+
'exception',
|
|
172
|
+
'exec',
|
|
173
|
+
'exit',
|
|
174
|
+
'expanduser',
|
|
175
|
+
'expandvars',
|
|
176
|
+
'false',
|
|
177
|
+
'fdopen',
|
|
178
|
+
'fileexistserror',
|
|
179
|
+
'filenotfounderror',
|
|
180
|
+
'filter',
|
|
181
|
+
'finally',
|
|
182
|
+
'finditer',
|
|
183
|
+
'float',
|
|
184
|
+
'floatingpointerror',
|
|
185
|
+
'for',
|
|
186
|
+
'format',
|
|
187
|
+
'from',
|
|
188
|
+
'fromkeys',
|
|
189
|
+
'frozenset',
|
|
190
|
+
'fsdecode',
|
|
191
|
+
'fsencode',
|
|
192
|
+
'functools',
|
|
193
|
+
'futurewarning',
|
|
194
|
+
'generatorexit',
|
|
195
|
+
'getatime',
|
|
196
|
+
'getattr',
|
|
197
|
+
'getctime',
|
|
198
|
+
'getcwd',
|
|
199
|
+
'getpass',
|
|
200
|
+
'global',
|
|
201
|
+
'globals',
|
|
202
|
+
'hasattr',
|
|
203
|
+
'hash',
|
|
204
|
+
'help',
|
|
205
|
+
'hex',
|
|
206
|
+
'httplib',
|
|
207
|
+
'id',
|
|
208
|
+
'if',
|
|
209
|
+
'ignorecase',
|
|
210
|
+
'import',
|
|
211
|
+
'importerror',
|
|
212
|
+
'importwarning',
|
|
213
|
+
'in',
|
|
214
|
+
'indentationerror',
|
|
215
|
+
'indexerror',
|
|
216
|
+
'initialise',
|
|
217
|
+
'input',
|
|
218
|
+
'int',
|
|
219
|
+
'interruptederror',
|
|
220
|
+
'ioerror',
|
|
221
|
+
'is',
|
|
222
|
+
'isabs',
|
|
223
|
+
'isadirectoryerror',
|
|
224
|
+
'isdir',
|
|
225
|
+
'isfile',
|
|
226
|
+
'isinstance',
|
|
227
|
+
'ismount',
|
|
228
|
+
'issubclass',
|
|
229
|
+
'iter',
|
|
230
|
+
'iteritems',
|
|
231
|
+
'iterkeys',
|
|
232
|
+
'itertree',
|
|
233
|
+
'itervalues',
|
|
234
|
+
'keyboardinterrupt',
|
|
235
|
+
'keyerror',
|
|
236
|
+
'kwargs',
|
|
237
|
+
'kwds',
|
|
238
|
+
'lambda',
|
|
239
|
+
'lchmod',
|
|
240
|
+
'len',
|
|
241
|
+
'lexists',
|
|
242
|
+
'license',
|
|
243
|
+
'list',
|
|
244
|
+
'locals',
|
|
245
|
+
'lookuperror',
|
|
246
|
+
'lstat',
|
|
247
|
+
'lstrip',
|
|
248
|
+
'makedirs',
|
|
249
|
+
'map',
|
|
250
|
+
'max',
|
|
251
|
+
'memoryerror',
|
|
252
|
+
'memoryview',
|
|
253
|
+
'metavar',
|
|
254
|
+
'mimetypes',
|
|
255
|
+
'min',
|
|
256
|
+
'mkdir',
|
|
257
|
+
'mtime',
|
|
258
|
+
'mypy',
|
|
259
|
+
'namedtuple',
|
|
260
|
+
'nameerror',
|
|
261
|
+
'nargs',
|
|
262
|
+
'netloc',
|
|
263
|
+
'next',
|
|
264
|
+
'noinspection',
|
|
265
|
+
'none',
|
|
266
|
+
'nonlocal',
|
|
267
|
+
'not',
|
|
268
|
+
'notadirectoryerror',
|
|
269
|
+
'notimplemented',
|
|
270
|
+
'notimplementederror',
|
|
271
|
+
'object',
|
|
272
|
+
'oct',
|
|
273
|
+
'open',
|
|
274
|
+
'or',
|
|
275
|
+
'ord',
|
|
276
|
+
'oserror',
|
|
277
|
+
'outfile',
|
|
278
|
+
'overflowerror',
|
|
279
|
+
'pass',
|
|
280
|
+
'pendingdeprecationwarning',
|
|
281
|
+
'permissionerror',
|
|
282
|
+
'posix',
|
|
283
|
+
'pow',
|
|
284
|
+
'print',
|
|
285
|
+
'processlookuperror',
|
|
286
|
+
'property',
|
|
287
|
+
'pygments',
|
|
288
|
+
'pypi',
|
|
289
|
+
'pypy',
|
|
290
|
+
'pytest',
|
|
291
|
+
'quit',
|
|
292
|
+
'raise',
|
|
293
|
+
'range',
|
|
294
|
+
'recursionerror',
|
|
295
|
+
'referenceerror',
|
|
296
|
+
'repr',
|
|
297
|
+
'reraise',
|
|
298
|
+
'resourcewarning',
|
|
299
|
+
'return',
|
|
300
|
+
'reversed',
|
|
301
|
+
'rmdir',
|
|
302
|
+
'rmtree',
|
|
303
|
+
'round',
|
|
304
|
+
'rstrip',
|
|
305
|
+
'runtimeerror',
|
|
306
|
+
'runtimewarning',
|
|
307
|
+
'set',
|
|
308
|
+
'setattr',
|
|
309
|
+
'setdefault',
|
|
310
|
+
'setupterm',
|
|
311
|
+
'shlex',
|
|
312
|
+
'shutil',
|
|
313
|
+
'slice',
|
|
314
|
+
'sorted',
|
|
315
|
+
'splitext',
|
|
316
|
+
'splitlines',
|
|
317
|
+
'splitunc',
|
|
318
|
+
'sqlite3',
|
|
319
|
+
'startswith',
|
|
320
|
+
'staticmethod',
|
|
321
|
+
'stopasynciteration',
|
|
322
|
+
'stopiteration',
|
|
323
|
+
'str',
|
|
324
|
+
'strftime',
|
|
325
|
+
'strptime',
|
|
326
|
+
'subn',
|
|
327
|
+
'sum',
|
|
328
|
+
'super',
|
|
329
|
+
'syntaxerror',
|
|
330
|
+
'syntaxwarning',
|
|
331
|
+
'systemerror',
|
|
332
|
+
'systemexit',
|
|
333
|
+
'taberror',
|
|
334
|
+
'textwrap',
|
|
335
|
+
'tigetnum',
|
|
336
|
+
'timeouterror',
|
|
337
|
+
'tkinter',
|
|
338
|
+
'true',
|
|
339
|
+
'try',
|
|
340
|
+
'tuple',
|
|
341
|
+
'type',
|
|
342
|
+
'typeerror',
|
|
343
|
+
'unboundlocalerror',
|
|
344
|
+
'unicodedecodeerror',
|
|
345
|
+
'unicodeencodeerror',
|
|
346
|
+
'unicodeerror',
|
|
347
|
+
'unicodetranslateerror',
|
|
348
|
+
'unicodewarning',
|
|
349
|
+
'urllib',
|
|
350
|
+
'urlopen',
|
|
351
|
+
'urlparse',
|
|
352
|
+
'urlsplit',
|
|
353
|
+
'userwarning',
|
|
354
|
+
'utime',
|
|
355
|
+
'valueerror',
|
|
356
|
+
'vars',
|
|
357
|
+
'warning',
|
|
358
|
+
'while',
|
|
359
|
+
'windowserror',
|
|
360
|
+
'with',
|
|
361
|
+
'writelines',
|
|
362
|
+
'xmlrpc',
|
|
363
|
+
'xrange',
|
|
364
|
+
'yield',
|
|
365
|
+
'zerodivisionerror',
|
|
366
|
+
'zip',
|
|
367
|
+
];
|
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
/* eslint-disable no-secrets/no-secrets */
|
|
2
|
+
module.exports = [
|
|
3
|
+
'__encoding__',
|
|
4
|
+
'__file__',
|
|
5
|
+
'__line__',
|
|
6
|
+
'@base_path',
|
|
7
|
+
'action',
|
|
8
|
+
'actioncontroller',
|
|
9
|
+
'actionview',
|
|
10
|
+
'activerecord',
|
|
11
|
+
'activesupport',
|
|
12
|
+
'additional_load_paths',
|
|
13
|
+
'alias',
|
|
14
|
+
'and',
|
|
15
|
+
'application',
|
|
16
|
+
'argf',
|
|
17
|
+
'argumenterror',
|
|
18
|
+
'argv',
|
|
19
|
+
'array',
|
|
20
|
+
'asset',
|
|
21
|
+
'association',
|
|
22
|
+
'attachment',
|
|
23
|
+
'attributes',
|
|
24
|
+
'basicsocket',
|
|
25
|
+
'begin',
|
|
26
|
+
'begin',
|
|
27
|
+
'benchmark',
|
|
28
|
+
'bignum',
|
|
29
|
+
'binding',
|
|
30
|
+
'block',
|
|
31
|
+
'break',
|
|
32
|
+
'callback',
|
|
33
|
+
'case',
|
|
34
|
+
'case',
|
|
35
|
+
'casecmp',
|
|
36
|
+
'cgi',
|
|
37
|
+
'cgimethods',
|
|
38
|
+
'chdir',
|
|
39
|
+
'class',
|
|
40
|
+
'class',
|
|
41
|
+
'classinheritableattributes',
|
|
42
|
+
'comparable',
|
|
43
|
+
'compatibilityerror',
|
|
44
|
+
'conditionvariable',
|
|
45
|
+
'config',
|
|
46
|
+
'configuration',
|
|
47
|
+
'connection',
|
|
48
|
+
'continuation',
|
|
49
|
+
'converternotfounderror',
|
|
50
|
+
'countloc',
|
|
51
|
+
'cross_compiling',
|
|
52
|
+
'data',
|
|
53
|
+
'date',
|
|
54
|
+
'datetime',
|
|
55
|
+
'def',
|
|
56
|
+
'defined?',
|
|
57
|
+
'delegater',
|
|
58
|
+
'delegator',
|
|
59
|
+
'device',
|
|
60
|
+
'digest',
|
|
61
|
+
'dir',
|
|
62
|
+
'dispatcher',
|
|
63
|
+
'display',
|
|
64
|
+
'do',
|
|
65
|
+
'domainname',
|
|
66
|
+
'downcase',
|
|
67
|
+
'drb',
|
|
68
|
+
'drbidconv',
|
|
69
|
+
'drbobject',
|
|
70
|
+
'drbundumped',
|
|
71
|
+
'eacces',
|
|
72
|
+
'ebadf',
|
|
73
|
+
'ebusy',
|
|
74
|
+
'echild',
|
|
75
|
+
'econnaborted',
|
|
76
|
+
'econnrefused',
|
|
77
|
+
'econnreset',
|
|
78
|
+
'edestaddrreq',
|
|
79
|
+
'eexist',
|
|
80
|
+
'efbig',
|
|
81
|
+
'ehostdown',
|
|
82
|
+
'ehostunreach',
|
|
83
|
+
'einval',
|
|
84
|
+
'eio',
|
|
85
|
+
'eisconn',
|
|
86
|
+
'eisdir',
|
|
87
|
+
'else',
|
|
88
|
+
'elsif',
|
|
89
|
+
'emfile',
|
|
90
|
+
'encodingerror',
|
|
91
|
+
'end',
|
|
92
|
+
'end',
|
|
93
|
+
'enetreset',
|
|
94
|
+
'enetunreach',
|
|
95
|
+
'enobufs',
|
|
96
|
+
'enoent',
|
|
97
|
+
'enomem',
|
|
98
|
+
'enospc',
|
|
99
|
+
'enotblk',
|
|
100
|
+
'enotconn',
|
|
101
|
+
'enotdir',
|
|
102
|
+
'enotempty',
|
|
103
|
+
'enotsock',
|
|
104
|
+
'ensure',
|
|
105
|
+
'enumerable',
|
|
106
|
+
'env',
|
|
107
|
+
'eoferror',
|
|
108
|
+
'eperm',
|
|
109
|
+
'epipe',
|
|
110
|
+
'eproclim',
|
|
111
|
+
'erb',
|
|
112
|
+
'erofs',
|
|
113
|
+
'errno',
|
|
114
|
+
'erubis',
|
|
115
|
+
'eshutdown',
|
|
116
|
+
'espipe',
|
|
117
|
+
'etimedout',
|
|
118
|
+
'eval',
|
|
119
|
+
'exception',
|
|
120
|
+
'excon',
|
|
121
|
+
'executeerror',
|
|
122
|
+
'false',
|
|
123
|
+
'false',
|
|
124
|
+
'falseclass',
|
|
125
|
+
'falsey',
|
|
126
|
+
'fcntl',
|
|
127
|
+
'fiber',
|
|
128
|
+
'fibererror',
|
|
129
|
+
'file',
|
|
130
|
+
'filelist',
|
|
131
|
+
'filetask',
|
|
132
|
+
'filetest',
|
|
133
|
+
'fileutils',
|
|
134
|
+
'fileutils',
|
|
135
|
+
'fixnum',
|
|
136
|
+
'float',
|
|
137
|
+
'floatdomainerror',
|
|
138
|
+
'for',
|
|
139
|
+
'format',
|
|
140
|
+
'frozen',
|
|
141
|
+
'gc',
|
|
142
|
+
'gem',
|
|
143
|
+
'gemdir',
|
|
144
|
+
'gemfile',
|
|
145
|
+
'gempath',
|
|
146
|
+
'gemrc',
|
|
147
|
+
'gemset',
|
|
148
|
+
'gemspecs',
|
|
149
|
+
'getlogin',
|
|
150
|
+
'getoptlong',
|
|
151
|
+
'getpwuid',
|
|
152
|
+
'getutc',
|
|
153
|
+
'gsub',
|
|
154
|
+
'hash',
|
|
155
|
+
'hidden',
|
|
156
|
+
'if',
|
|
157
|
+
'image',
|
|
158
|
+
'in',
|
|
159
|
+
'indexerror',
|
|
160
|
+
'inflector',
|
|
161
|
+
'integer',
|
|
162
|
+
'interrupt',
|
|
163
|
+
'invalid',
|
|
164
|
+
'invalid?',
|
|
165
|
+
'invalidbytesequenceerror',
|
|
166
|
+
'io',
|
|
167
|
+
'ioerror',
|
|
168
|
+
'ipaddress',
|
|
169
|
+
'ipsocket',
|
|
170
|
+
'kernel',
|
|
171
|
+
'key',
|
|
172
|
+
'keyerror',
|
|
173
|
+
'kind',
|
|
174
|
+
'libyajl',
|
|
175
|
+
'ln_supported',
|
|
176
|
+
'load',
|
|
177
|
+
'loaderror',
|
|
178
|
+
'localjumperror',
|
|
179
|
+
'location',
|
|
180
|
+
'logger',
|
|
181
|
+
'mail',
|
|
182
|
+
'marshal',
|
|
183
|
+
'matchdata',
|
|
184
|
+
'matchingdata',
|
|
185
|
+
'math',
|
|
186
|
+
'merb',
|
|
187
|
+
'method',
|
|
188
|
+
'minitest',
|
|
189
|
+
'mixlib',
|
|
190
|
+
'model_name',
|
|
191
|
+
'module',
|
|
192
|
+
'module',
|
|
193
|
+
'monitor',
|
|
194
|
+
'mutex',
|
|
195
|
+
'mysql',
|
|
196
|
+
'mysqlerror',
|
|
197
|
+
'mysqlfield',
|
|
198
|
+
'mysqlres',
|
|
199
|
+
'nameerror',
|
|
200
|
+
'next',
|
|
201
|
+
'nil',
|
|
202
|
+
'nil',
|
|
203
|
+
'nilclass',
|
|
204
|
+
'nokogiri',
|
|
205
|
+
'nomemoryerror',
|
|
206
|
+
'nomethoderror',
|
|
207
|
+
'not',
|
|
208
|
+
'notify',
|
|
209
|
+
'notimplementederror',
|
|
210
|
+
'nowrite',
|
|
211
|
+
'numeric',
|
|
212
|
+
'object',
|
|
213
|
+
'object_id',
|
|
214
|
+
'objectspace',
|
|
215
|
+
'observable',
|
|
216
|
+
'observer',
|
|
217
|
+
'octokit',
|
|
218
|
+
'open',
|
|
219
|
+
'opt_table',
|
|
220
|
+
'or',
|
|
221
|
+
'ostruct',
|
|
222
|
+
'params',
|
|
223
|
+
'parsedate',
|
|
224
|
+
'pgconn',
|
|
225
|
+
'pgerror',
|
|
226
|
+
'pglarge',
|
|
227
|
+
'pgresult',
|
|
228
|
+
'platform',
|
|
229
|
+
'precision',
|
|
230
|
+
'precompile',
|
|
231
|
+
'proc',
|
|
232
|
+
'process',
|
|
233
|
+
'pstore',
|
|
234
|
+
'queue',
|
|
235
|
+
'quote',
|
|
236
|
+
'rake',
|
|
237
|
+
'rakeapp',
|
|
238
|
+
'rakefileutils',
|
|
239
|
+
'rakeversion',
|
|
240
|
+
'range',
|
|
241
|
+
'rangeerror',
|
|
242
|
+
'rational',
|
|
243
|
+
'rdoc',
|
|
244
|
+
'readonly',
|
|
245
|
+
'record',
|
|
246
|
+
'records',
|
|
247
|
+
'redo',
|
|
248
|
+
'regexp',
|
|
249
|
+
'regexperror',
|
|
250
|
+
'release_date',
|
|
251
|
+
'request',
|
|
252
|
+
'request',
|
|
253
|
+
'rescue',
|
|
254
|
+
'responses',
|
|
255
|
+
'retriable',
|
|
256
|
+
'retry',
|
|
257
|
+
'return',
|
|
258
|
+
'rexml',
|
|
259
|
+
'rspec',
|
|
260
|
+
'rubocop',
|
|
261
|
+
'ruby',
|
|
262
|
+
'ruby_platform',
|
|
263
|
+
'ruby_release_date',
|
|
264
|
+
'ruby_version',
|
|
265
|
+
'rubygem',
|
|
266
|
+
'rubygems',
|
|
267
|
+
'rubylib',
|
|
268
|
+
'rubyntlm',
|
|
269
|
+
'rubyopt',
|
|
270
|
+
'rubyzip',
|
|
271
|
+
'runtimeerror',
|
|
272
|
+
'sad asdasd',
|
|
273
|
+
'scanerror',
|
|
274
|
+
'scope',
|
|
275
|
+
'scripterror',
|
|
276
|
+
'securityerror',
|
|
277
|
+
'self',
|
|
278
|
+
'send',
|
|
279
|
+
'session',
|
|
280
|
+
'signal',
|
|
281
|
+
'signalexception',
|
|
282
|
+
'simplecov',
|
|
283
|
+
'simpledelegater',
|
|
284
|
+
'simpledelegator',
|
|
285
|
+
'singleton',
|
|
286
|
+
'sizedqueue',
|
|
287
|
+
'socket',
|
|
288
|
+
'socketerror',
|
|
289
|
+
'source',
|
|
290
|
+
'standarderror',
|
|
291
|
+
'stderr',
|
|
292
|
+
'stdin',
|
|
293
|
+
'stdout',
|
|
294
|
+
'stopiteration',
|
|
295
|
+
'string',
|
|
296
|
+
'stringscanner',
|
|
297
|
+
'struct',
|
|
298
|
+
'super',
|
|
299
|
+
'swapcase',
|
|
300
|
+
'sweeper',
|
|
301
|
+
'symbol',
|
|
302
|
+
'syntaxerror',
|
|
303
|
+
'system',
|
|
304
|
+
'systemcallerror',
|
|
305
|
+
'systemexit',
|
|
306
|
+
'systemstackerror',
|
|
307
|
+
'systemu',
|
|
308
|
+
'target',
|
|
309
|
+
'task',
|
|
310
|
+
'tcpserver',
|
|
311
|
+
'tcpsocket',
|
|
312
|
+
'template',
|
|
313
|
+
'template',
|
|
314
|
+
'test',
|
|
315
|
+
'text',
|
|
316
|
+
'then',
|
|
317
|
+
'thread',
|
|
318
|
+
'threaderror',
|
|
319
|
+
'threadgroup',
|
|
320
|
+
'time',
|
|
321
|
+
'timeout',
|
|
322
|
+
'to_s',
|
|
323
|
+
'tomlrb',
|
|
324
|
+
'toplevel_binding',
|
|
325
|
+
'touch',
|
|
326
|
+
'transaction',
|
|
327
|
+
'true',
|
|
328
|
+
'true',
|
|
329
|
+
'trueclass',
|
|
330
|
+
'type',
|
|
331
|
+
'type (namespaced)',
|
|
332
|
+
'typeerror',
|
|
333
|
+
'udpsocket',
|
|
334
|
+
'unboundmethod',
|
|
335
|
+
'uncaughtthrowerror',
|
|
336
|
+
'undef',
|
|
337
|
+
'undefinedconversionerror',
|
|
338
|
+
'unixserver',
|
|
339
|
+
'unixsocket',
|
|
340
|
+
'unless',
|
|
341
|
+
'unshift',
|
|
342
|
+
'until',
|
|
343
|
+
'upcase',
|
|
344
|
+
'uri',
|
|
345
|
+
'url',
|
|
346
|
+
'verbose',
|
|
347
|
+
'version',
|
|
348
|
+
'webmock',
|
|
349
|
+
'webrick',
|
|
350
|
+
'when',
|
|
351
|
+
'while',
|
|
352
|
+
'yajl',
|
|
353
|
+
'yaml',
|
|
354
|
+
'yardoc',
|
|
355
|
+
'yield',
|
|
356
|
+
'zerodivisionerror',
|
|
357
|
+
];
|