steamutils 1.3.45 → 1.3.46
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/.eslintrc.json +30 -0
- package/.idea/codeStyles/Project.xml +58 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/jsLinters/eslint.xml +6 -0
- package/.idea/prettier.xml +7 -0
- package/.prettierrc.json +3 -0
- package/SteamClient.js +2356 -2337
- package/package.json +6 -2
package/.eslintrc.json
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"parserOptions": {
|
3
|
+
"sourceType": "module"
|
4
|
+
},
|
5
|
+
"extends": [
|
6
|
+
"eslint:recommended",
|
7
|
+
"prettier"
|
8
|
+
],
|
9
|
+
"plugins": [
|
10
|
+
"prettier"
|
11
|
+
],
|
12
|
+
"env": {
|
13
|
+
"es2021": true
|
14
|
+
},
|
15
|
+
"rules": {
|
16
|
+
"quotes": [
|
17
|
+
2,
|
18
|
+
"double",
|
19
|
+
{
|
20
|
+
"avoidEscape": true
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"max-len": "off",
|
24
|
+
"no-unused-vars": "off",
|
25
|
+
"no-undef": "off",
|
26
|
+
"no-case-declarations": "off",
|
27
|
+
"no-unreachable": "off",
|
28
|
+
"prefer-template": 2
|
29
|
+
}
|
30
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<component name="ProjectCodeStyleConfiguration">
|
2
|
+
<code_scheme name="Project" version="173">
|
3
|
+
<HTMLCodeStyleSettings>
|
4
|
+
<option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
|
5
|
+
<option name="HTML_ENFORCE_QUOTES" value="true" />
|
6
|
+
</HTMLCodeStyleSettings>
|
7
|
+
<JSCodeStyleSettings version="0">
|
8
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
9
|
+
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
10
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
11
|
+
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
12
|
+
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
13
|
+
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
14
|
+
</JSCodeStyleSettings>
|
15
|
+
<TypeScriptCodeStyleSettings version="0">
|
16
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
17
|
+
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
18
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
19
|
+
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
20
|
+
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
21
|
+
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
22
|
+
</TypeScriptCodeStyleSettings>
|
23
|
+
<VueCodeStyleSettings>
|
24
|
+
<option name="INTERPOLATION_NEW_LINE_AFTER_START_DELIMITER" value="false" />
|
25
|
+
<option name="INTERPOLATION_NEW_LINE_BEFORE_END_DELIMITER" value="false" />
|
26
|
+
</VueCodeStyleSettings>
|
27
|
+
<codeStyleSettings language="HTML">
|
28
|
+
<option name="SOFT_MARGINS" value="1000" />
|
29
|
+
<indentOptions>
|
30
|
+
<option name="INDENT_SIZE" value="2" />
|
31
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
32
|
+
<option name="TAB_SIZE" value="2" />
|
33
|
+
</indentOptions>
|
34
|
+
</codeStyleSettings>
|
35
|
+
<codeStyleSettings language="JavaScript">
|
36
|
+
<option name="SOFT_MARGINS" value="1000" />
|
37
|
+
<indentOptions>
|
38
|
+
<option name="INDENT_SIZE" value="2" />
|
39
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
40
|
+
<option name="TAB_SIZE" value="2" />
|
41
|
+
</indentOptions>
|
42
|
+
</codeStyleSettings>
|
43
|
+
<codeStyleSettings language="TypeScript">
|
44
|
+
<option name="SOFT_MARGINS" value="1000" />
|
45
|
+
<indentOptions>
|
46
|
+
<option name="INDENT_SIZE" value="2" />
|
47
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
48
|
+
<option name="TAB_SIZE" value="2" />
|
49
|
+
</indentOptions>
|
50
|
+
</codeStyleSettings>
|
51
|
+
<codeStyleSettings language="Vue">
|
52
|
+
<option name="SOFT_MARGINS" value="1000" />
|
53
|
+
<indentOptions>
|
54
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
55
|
+
</indentOptions>
|
56
|
+
</codeStyleSettings>
|
57
|
+
</code_scheme>
|
58
|
+
</component>
|
package/.prettierrc.json
ADDED