@alexlit/config-eslint 90.0.0 → 91.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/README.md +14 -29
- package/index.js +44 -8
- package/package.json +11 -53
- package/constants/allow-boolean-property-list.js +0 -38
- package/constants/boolean-prefixes.js +0 -11
- package/constants/english-verbs.js +0 -3368
- package/dictionaries/index.js +0 -467
- package/dictionaries/programming/bash.js +0 -25
- package/dictionaries/programming/django.js +0 -2345
- package/dictionaries/programming/elixir.js +0 -64
- package/dictionaries/programming/go.js +0 -7748
- package/dictionaries/programming/java.js +0 -33527
- package/dictionaries/programming/latex.js +0 -675
- package/dictionaries/programming/lua.js +0 -394
- package/dictionaries/programming/php.js +0 -9788
- package/dictionaries/programming/python.js +0 -367
- package/dictionaries/programming/ruby.js +0 -357
- package/dictionaries/programming/rust.js +0 -115
- package/dictionaries/programming/scala.js +0 -2755
- package/dictionaries/specialized/html-symbol-entities.js +0 -1118
- package/dictionaries/specialized/lorem-ipsum.js +0 -359
- package/legacy.js +0 -3
- package/plugins/array-func.js +0 -20
- package/plugins/compat.js +0 -7
- package/plugins/decorator-position.js +0 -15
- package/plugins/eslint-comments.js +0 -9
- package/plugins/etc.js +0 -13
- package/plugins/ext.js +0 -12
- package/plugins/filenames.js +0 -38
- package/plugins/import.js +0 -133
- package/plugins/jsdoc.js +0 -32
- package/plugins/jsx-a11y.js +0 -5
- package/plugins/lit-a11y.js +0 -5
- package/plugins/lit.js +0 -9
- package/plugins/more.js +0 -17
- package/plugins/no-await-in-promise.js +0 -5
- package/plugins/no-constructor-bind.js +0 -8
- package/plugins/no-explicit-type-exports.js +0 -7
- package/plugins/no-loops.js +0 -7
- package/plugins/no-secrets.js +0 -12
- package/plugins/no-use-extend-native.js +0 -5
- package/plugins/node.js +0 -5
- package/plugins/prettier.js +0 -24
- package/plugins/promise.js +0 -10
- package/plugins/regexp.js +0 -7
- package/plugins/security.js +0 -10
- package/plugins/simple-import-sort.js +0 -7
- package/plugins/sonar.js +0 -5
- package/plugins/sort-class-members.js +0 -298
- package/plugins/sort-destructure-keys.js +0 -10
- package/plugins/sort-keys-fix.js +0 -7
- package/plugins/spellcheck.js +0 -9
- package/plugins/sql.js +0 -26
- package/plugins/tanstack-query.js +0 -4
- package/plugins/testing-library.js +0 -9
- package/plugins/typescript-sort-keys.js +0 -5
- package/plugins/typescript.js +0 -157
- package/plugins/unicorn.js +0 -70
- package/plugins/unused-imports.js +0 -17
- package/plugins/vitest.js +0 -16
- package/plugins/vue-i18n.js +0 -34
- package/plugins/vue.js +0 -291
- package/plugins/vuejs-accessibility.js +0 -20
- package/plugins/wc.js +0 -5
- package/plugins/write-good-comments.js +0 -7
- package/utils/create-config.js +0 -377
- package/utils/extend-spell-checker.js +0 -23
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
/* eslint-disable no-secrets/no-secrets */
|
|
2
|
-
module.exports = [
|
|
3
|
-
'def',
|
|
4
|
-
'defcallback',
|
|
5
|
-
'defexception',
|
|
6
|
-
'defdelegate',
|
|
7
|
-
'defguard',
|
|
8
|
-
'defguardp',
|
|
9
|
-
'defimpl',
|
|
10
|
-
'defmacro',
|
|
11
|
-
'defmacrocallback',
|
|
12
|
-
'defmacrop',
|
|
13
|
-
'defmodule',
|
|
14
|
-
'defopaque',
|
|
15
|
-
'defoverridable',
|
|
16
|
-
'defp',
|
|
17
|
-
'defprotocol',
|
|
18
|
-
'defspec',
|
|
19
|
-
'defstruct',
|
|
20
|
-
'deftype',
|
|
21
|
-
'deftypep ',
|
|
22
|
-
'atom',
|
|
23
|
-
'bitstring',
|
|
24
|
-
'charlist',
|
|
25
|
-
'float',
|
|
26
|
-
'integer',
|
|
27
|
-
'list',
|
|
28
|
-
'map',
|
|
29
|
-
'process',
|
|
30
|
-
'port',
|
|
31
|
-
'tuple ',
|
|
32
|
-
'nil',
|
|
33
|
-
'true',
|
|
34
|
-
'false ',
|
|
35
|
-
'elixir',
|
|
36
|
-
'erlang ',
|
|
37
|
-
'__caller__',
|
|
38
|
-
'__dir__',
|
|
39
|
-
'__env__',
|
|
40
|
-
'__file__',
|
|
41
|
-
'__module__ ',
|
|
42
|
-
'arity',
|
|
43
|
-
'behaviour',
|
|
44
|
-
'concat',
|
|
45
|
-
'cond',
|
|
46
|
-
'destructure',
|
|
47
|
-
'elixirc',
|
|
48
|
-
'iodata',
|
|
49
|
-
'moduledoc',
|
|
50
|
-
'nohost',
|
|
51
|
-
'nomatch',
|
|
52
|
-
'nonode',
|
|
53
|
-
'overridable',
|
|
54
|
-
'regex',
|
|
55
|
-
'reraise',
|
|
56
|
-
'struct',
|
|
57
|
-
'structs',
|
|
58
|
-
'typedoc',
|
|
59
|
-
'typespec ',
|
|
60
|
-
'mix',
|
|
61
|
-
'deps',
|
|
62
|
-
'hexpm',
|
|
63
|
-
'ecto',
|
|
64
|
-
];
|