@mkody/twitch-emoticons 2.8.7 → 2.8.8
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/dist/TwitchEmoticons.min.js +11 -11
- package/dist/TwitchEmoticons.min.js.map +4 -4
- package/docs/BTTVEmote.html +4 -4
- package/docs/Channel.html +1 -1
- package/docs/Collection.html +1 -1
- package/docs/Emote.html +3 -3
- package/docs/EmoteFetcher.html +17 -17
- package/docs/EmoteParser.html +4 -4
- package/docs/FFZEmote.html +4 -4
- package/docs/SevenTVEmote.html +4 -4
- package/docs/TwitchEmote.html +4 -4
- package/docs/index.html +2 -2
- package/docs/struct_BTTVEmote.js.html +4 -4
- package/docs/struct_Channel.js.html +1 -1
- package/docs/struct_Emote.js.html +2 -2
- package/docs/struct_EmoteFetcher.js.html +13 -13
- package/docs/struct_EmoteParser.js.html +3 -3
- package/docs/struct_FFZEmote.js.html +4 -4
- package/docs/struct_SevenTVEmote.js.html +4 -4
- package/docs/struct_TwitchEmote.js.html +4 -4
- package/docs/util_Collection.js.html +1 -1
- package/eslint.config.mjs +215 -0
- package/package.json +10 -7
- package/src/struct/BTTVEmote.js +3 -3
- package/src/struct/Emote.js +1 -1
- package/src/struct/EmoteFetcher.js +12 -12
- package/src/struct/EmoteParser.js +2 -2
- package/src/struct/FFZEmote.js +3 -3
- package/src/struct/SevenTVEmote.js +3 -3
- package/src/struct/TwitchEmote.js +3 -3
- package/.eslintrc.json +0 -143
package/.eslintrc.json
DELETED
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "eslint:recommended",
|
|
3
|
-
"parserOptions": {
|
|
4
|
-
"ecmaVersion": 2018
|
|
5
|
-
},
|
|
6
|
-
"env": {
|
|
7
|
-
"es6": true,
|
|
8
|
-
"node": true
|
|
9
|
-
},
|
|
10
|
-
"rules": {
|
|
11
|
-
"no-await-in-loop": "warn",
|
|
12
|
-
"no-extra-parens": ["warn", "all", {
|
|
13
|
-
"nestedBinaryExpressions": false
|
|
14
|
-
}],
|
|
15
|
-
"no-template-curly-in-string": "error",
|
|
16
|
-
"no-unsafe-negation": "error",
|
|
17
|
-
"valid-jsdoc": ["error", {
|
|
18
|
-
"requireReturn": false,
|
|
19
|
-
"requireReturnDescription": false,
|
|
20
|
-
"prefer": {
|
|
21
|
-
"return": "returns",
|
|
22
|
-
"arg": "param"
|
|
23
|
-
},
|
|
24
|
-
"preferType": {
|
|
25
|
-
"String": "string",
|
|
26
|
-
"Number": "number",
|
|
27
|
-
"Boolean": "boolean",
|
|
28
|
-
"object": "Object",
|
|
29
|
-
"function": "Function",
|
|
30
|
-
"array": "Array",
|
|
31
|
-
"date": "Date",
|
|
32
|
-
"error": "Error",
|
|
33
|
-
"null": "void"
|
|
34
|
-
}
|
|
35
|
-
}],
|
|
36
|
-
|
|
37
|
-
"accessor-pairs": "warn",
|
|
38
|
-
"array-callback-return": "error",
|
|
39
|
-
"complexity": "warn",
|
|
40
|
-
"consistent-return": "error",
|
|
41
|
-
"curly": ["error", "multi-line", "consistent"],
|
|
42
|
-
"dot-location": ["error", "property"],
|
|
43
|
-
"dot-notation": "error",
|
|
44
|
-
"eqeqeq": ["error", "smart"],
|
|
45
|
-
"no-console": "error",
|
|
46
|
-
"no-empty-function": "error",
|
|
47
|
-
"no-floating-decimal": "error",
|
|
48
|
-
"no-implied-eval": "error",
|
|
49
|
-
"no-invalid-this": "error",
|
|
50
|
-
"no-lone-blocks": "error",
|
|
51
|
-
"no-multi-spaces": "error",
|
|
52
|
-
"no-new-func": "error",
|
|
53
|
-
"no-new-wrappers": "error",
|
|
54
|
-
"no-new": "error",
|
|
55
|
-
"no-octal-escape": "error",
|
|
56
|
-
"no-return-assign": "error",
|
|
57
|
-
"no-return-await": "error",
|
|
58
|
-
"no-self-compare": "error",
|
|
59
|
-
"no-sequences": "error",
|
|
60
|
-
"no-throw-literal": "error",
|
|
61
|
-
"no-unmodified-loop-condition": "error",
|
|
62
|
-
"no-unused-expressions": "error",
|
|
63
|
-
"no-useless-call": "error",
|
|
64
|
-
"no-useless-concat": "error",
|
|
65
|
-
"no-useless-escape": "error",
|
|
66
|
-
"no-useless-return": "error",
|
|
67
|
-
"no-void": "error",
|
|
68
|
-
"no-warning-comments": "warn",
|
|
69
|
-
"require-await": "warn",
|
|
70
|
-
"wrap-iife": "error",
|
|
71
|
-
"yoda": "error",
|
|
72
|
-
|
|
73
|
-
"no-label-var": "error",
|
|
74
|
-
"no-shadow": "error",
|
|
75
|
-
"no-undef-init": "error",
|
|
76
|
-
|
|
77
|
-
"callback-return": "error",
|
|
78
|
-
"handle-callback-err": "error",
|
|
79
|
-
"no-mixed-requires": "error",
|
|
80
|
-
"no-new-require": "error",
|
|
81
|
-
"no-path-concat": "error",
|
|
82
|
-
|
|
83
|
-
"array-bracket-spacing": "error",
|
|
84
|
-
"block-spacing": "error",
|
|
85
|
-
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
|
|
86
|
-
"comma-dangle": ["error", "never"],
|
|
87
|
-
"comma-spacing": "error",
|
|
88
|
-
"comma-style": "error",
|
|
89
|
-
"computed-property-spacing": "error",
|
|
90
|
-
"consistent-this": ["error", "$this"],
|
|
91
|
-
"eol-last": "error",
|
|
92
|
-
"func-names": "error",
|
|
93
|
-
"func-name-matching": "error",
|
|
94
|
-
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
|
|
95
|
-
"indent": ["error", 4],
|
|
96
|
-
"key-spacing": "error",
|
|
97
|
-
"keyword-spacing": "error",
|
|
98
|
-
"max-depth": "error",
|
|
99
|
-
"max-nested-callbacks": ["error", { "max": 4 }],
|
|
100
|
-
"max-statements-per-line": ["error", { "max": 2 }],
|
|
101
|
-
"new-cap": "error",
|
|
102
|
-
"no-array-constructor": "error",
|
|
103
|
-
"no-inline-comments": "error",
|
|
104
|
-
"no-lonely-if": "error",
|
|
105
|
-
"no-mixed-operators": "error",
|
|
106
|
-
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1, "maxBOF": 0 }],
|
|
107
|
-
"no-new-object": "error",
|
|
108
|
-
"no-spaced-func": "error",
|
|
109
|
-
"no-trailing-spaces": "error",
|
|
110
|
-
"no-unneeded-ternary": "error",
|
|
111
|
-
"no-whitespace-before-property": "error",
|
|
112
|
-
"object-curly-spacing": ["error", "always"],
|
|
113
|
-
"operator-assignment": "error",
|
|
114
|
-
"operator-linebreak": ["error", "before"],
|
|
115
|
-
"padded-blocks": ["error", "never"],
|
|
116
|
-
"quote-props": ["error", "as-needed"],
|
|
117
|
-
"quotes": ["error", "single"],
|
|
118
|
-
"semi-spacing": "error",
|
|
119
|
-
"semi": "error",
|
|
120
|
-
"space-before-blocks": "error",
|
|
121
|
-
"space-before-function-paren": ["error", "never"],
|
|
122
|
-
"space-in-parens": "error",
|
|
123
|
-
"space-infix-ops": "error",
|
|
124
|
-
"space-unary-ops": "error",
|
|
125
|
-
"spaced-comment": "error",
|
|
126
|
-
"unicode-bom": "error",
|
|
127
|
-
|
|
128
|
-
"arrow-parens": ["error", "as-needed"],
|
|
129
|
-
"arrow-spacing": "error",
|
|
130
|
-
"no-duplicate-imports": "error",
|
|
131
|
-
"no-useless-computed-key": "error",
|
|
132
|
-
"no-useless-constructor": "error",
|
|
133
|
-
"prefer-const": "error",
|
|
134
|
-
"prefer-arrow-callback": "error",
|
|
135
|
-
"prefer-numeric-literals": "error",
|
|
136
|
-
"prefer-rest-params": "error",
|
|
137
|
-
"prefer-spread": "error",
|
|
138
|
-
"prefer-template": "error",
|
|
139
|
-
"rest-spread-spacing": "error",
|
|
140
|
-
"template-curly-spacing": "error",
|
|
141
|
-
"yield-star-spacing": "error"
|
|
142
|
-
}
|
|
143
|
-
}
|