poi-plugin-item-improvement2-beta 0.0.2 → 0.0.31
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.js +42 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +62 -5
- package/assets/arsenal.nedb +350 -59
- package/assets/arsenal_weekday.nedb +7 -0
- package/assets/items.nedb +350 -59
- package/i18n/zh-CN.json +1 -1
- package/package.json +1 -1
- package/publish.js +111 -0
- package/views/selectors.js +20 -0
- package/assets/data_kcwiki.es +0 -105
- package/views/detail-row.es +0 -174
- package/views/divider.es +0 -9
- package/views/item-info-area.es +0 -104
- package/views/item-info-row.es +0 -55
- package/views/item-wrapper.es +0 -86
- package/views/mat-row.es +0 -136
- package/views/selectors.es +0 -249
- package/views/starcraft/add-new-equip-view.es +0 -75
- package/views/starcraft/control-panel.es +0 -65
- package/views/starcraft/equip-category-view.es +0 -105
- package/views/starcraft/equip-list-view.es +0 -87
- package/views/starcraft/equip-view.es +0 -106
- package/views/starcraft/equiptype.es +0 -112
- package/views/starcraft/plan-modify-control.es +0 -148
- package/views/starcraft/plan-view.es +0 -63
- package/views/starcraft/starcraft-area.es +0 -166
- package/views/starcraft/utils.es +0 -40
- package/views/useitem-icon.es +0 -43
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
extends: ['airbnb', 'poi-plugin'],
|
|
3
|
+
plugins: ['react', 'jsx-a11y', 'import'],
|
|
4
|
+
env: {
|
|
5
|
+
browser: true,
|
|
6
|
+
es6: true,
|
|
7
|
+
node: true
|
|
8
|
+
},
|
|
9
|
+
parser: 'babel-eslint',
|
|
10
|
+
rules: {
|
|
11
|
+
semi: ['error', 'never'],
|
|
12
|
+
'import/no-unresolved': [2, { ignore: ['views/.*'] }],
|
|
13
|
+
'react/jsx-filename-extension': 'off',
|
|
14
|
+
'no-underscore-dangle': ['error', { allowAfterThis: true }],
|
|
15
|
+
'import/extensions': ['error', { es: 'never' }],
|
|
16
|
+
'import/no-extraneous-dependencies': 'off',
|
|
17
|
+
'comma-dangle': ['error', 'always-multiline'],
|
|
18
|
+
'no-confusing-arrow': ['error', { allowParens: true }],
|
|
19
|
+
'import/prefer-default-export': 'off',
|
|
20
|
+
'jsx-a11y/no-static-element-interactions': 'off',
|
|
21
|
+
'arrow-parens': ['error', 'as-needed'],
|
|
22
|
+
'no-underscore-dangle': ['error', { allow: ['__'] }],
|
|
23
|
+
'no-console': ['error', { allow: ['warn', 'error'] }],
|
|
24
|
+
'space-in-parens': 'off',
|
|
25
|
+
'object-curly-spacing': 'off',
|
|
26
|
+
'react/jsx-curly-spacing': 'off',
|
|
27
|
+
'react/jsx-first-prop-new-line': 'off',
|
|
28
|
+
'react/jsx-closing-bracket-location': 'off',
|
|
29
|
+
'react/jsx-indent-props': 'off',
|
|
30
|
+
'space-unary-ops': 'off',
|
|
31
|
+
'object-property-newline': 'off',
|
|
32
|
+
'space-infix-ops': 'off',
|
|
33
|
+
curly: 'off',
|
|
34
|
+
'comma-spacing': 'off',
|
|
35
|
+
'array-callback-return': 'off',
|
|
36
|
+
'no-nested-ternary': 'off',
|
|
37
|
+
'no-confusing-arrow': 'off',
|
|
38
|
+
'no-else-return': 'off',
|
|
39
|
+
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
|
|
40
|
+
'react/forbid-prop-types': 'off'
|
|
41
|
+
}
|
|
42
|
+
}
|
package/.idea/vcs.xml
ADDED
package/.idea/workspace.xml
CHANGED
|
@@ -4,13 +4,31 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="40128e24-f8c8-43c8-87be-27f4e2d2db24" name="更改" comment=""
|
|
7
|
+
<list default="true" id="40128e24-f8c8-43c8-87be-27f4e2d2db24" name="更改" comment="">
|
|
8
|
+
<change afterPath="$PROJECT_DIR$/assets/arsenal_weekday.nedb" afterDir="false" />
|
|
9
|
+
<change beforePath="$PROJECT_DIR$/assets/arsenal.nedb" beforeDir="false" afterPath="$PROJECT_DIR$/assets/arsenal.nedb" afterDir="false" />
|
|
10
|
+
<change beforePath="$PROJECT_DIR$/assets/items.nedb" beforeDir="false" afterPath="$PROJECT_DIR$/assets/items.nedb" afterDir="false" />
|
|
11
|
+
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
12
|
+
<change beforePath="$PROJECT_DIR$/views/selectors.es" beforeDir="false" afterPath="$PROJECT_DIR$/views/selectors.es" afterDir="false" />
|
|
13
|
+
</list>
|
|
8
14
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
15
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
16
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
17
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
18
|
</component>
|
|
19
|
+
<component name="FileTemplateManagerImpl">
|
|
20
|
+
<option name="RECENT_TEMPLATES">
|
|
21
|
+
<list>
|
|
22
|
+
<option value="JavaScript File" />
|
|
23
|
+
</list>
|
|
24
|
+
</option>
|
|
25
|
+
</component>
|
|
13
26
|
<component name="Git.Settings">
|
|
27
|
+
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
|
28
|
+
<map>
|
|
29
|
+
<entry key="$PROJECT_DIR$" value="bd4b1890cf609ab4812e5d1f934a40b672439046" />
|
|
30
|
+
</map>
|
|
31
|
+
</option>
|
|
14
32
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
15
33
|
</component>
|
|
16
34
|
<component name="ProjectColorInfo">{
|
|
@@ -23,13 +41,16 @@
|
|
|
23
41
|
</component>
|
|
24
42
|
<component name="PropertiesComponent">{
|
|
25
43
|
"keyToString": {
|
|
44
|
+
"ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
|
26
45
|
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
46
|
+
"Node.js.publish.js.executor": "Run",
|
|
27
47
|
"Node.js.selectors.es.executor": "Run",
|
|
28
48
|
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
29
49
|
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
30
50
|
"RunOnceActivity.git.unshallow": "true",
|
|
31
51
|
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
|
|
32
|
-
"
|
|
52
|
+
"SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
|
53
|
+
"git-widget-placeholder": "main",
|
|
33
54
|
"javascript.preferred.runtime.type.id": "node",
|
|
34
55
|
"last_opened_file_path": "/Users/sakana/code/plugin-item-improvement/assets",
|
|
35
56
|
"node.js.detected.package.eslint": "true",
|
|
@@ -63,7 +84,12 @@
|
|
|
63
84
|
<workItem from="1766954534702" duration="24000" />
|
|
64
85
|
<workItem from="1766954565993" duration="12934000" />
|
|
65
86
|
<workItem from="1766998961559" duration="8885000" />
|
|
66
|
-
<workItem from="1767112889804" duration="
|
|
87
|
+
<workItem from="1767112889804" duration="3312000" />
|
|
88
|
+
<workItem from="1767127690697" duration="9838000" />
|
|
89
|
+
<workItem from="1767265931452" duration="395000" />
|
|
90
|
+
<workItem from="1767266330648" duration="5077000" />
|
|
91
|
+
<workItem from="1767272485923" duration="3120000" />
|
|
92
|
+
<workItem from="1767275985364" duration="284000" />
|
|
67
93
|
</task>
|
|
68
94
|
<servers />
|
|
69
95
|
</component>
|
|
@@ -73,12 +99,43 @@
|
|
|
73
99
|
<component name="Vcs.Log.Tabs.Properties">
|
|
74
100
|
<option name="OPEN_GENERIC_TABS">
|
|
75
101
|
<map>
|
|
76
|
-
<entry key="
|
|
102
|
+
<entry key="58259129-2460-4a0e-b302-350805d6bd55" value="TOOL_WINDOW" />
|
|
103
|
+
<entry key="a82f41bb-08d4-4df9-9063-096f78d1883c" value="TOOL_WINDOW" />
|
|
77
104
|
</map>
|
|
78
105
|
</option>
|
|
79
106
|
<option name="TAB_STATES">
|
|
80
107
|
<map>
|
|
81
|
-
<entry key="
|
|
108
|
+
<entry key="58259129-2460-4a0e-b302-350805d6bd55">
|
|
109
|
+
<value>
|
|
110
|
+
<State>
|
|
111
|
+
<option name="FILTERS">
|
|
112
|
+
<map>
|
|
113
|
+
<entry key="branch">
|
|
114
|
+
<value>
|
|
115
|
+
<list>
|
|
116
|
+
<option value="HEAD" />
|
|
117
|
+
</list>
|
|
118
|
+
</value>
|
|
119
|
+
</entry>
|
|
120
|
+
<entry key="roots">
|
|
121
|
+
<value>
|
|
122
|
+
<list>
|
|
123
|
+
<option value="$PROJECT_DIR$" />
|
|
124
|
+
</list>
|
|
125
|
+
</value>
|
|
126
|
+
</entry>
|
|
127
|
+
</map>
|
|
128
|
+
</option>
|
|
129
|
+
<option name="SHOW_ONLY_AFFECTED_CHANGES" value="true" />
|
|
130
|
+
</State>
|
|
131
|
+
</value>
|
|
132
|
+
</entry>
|
|
133
|
+
<entry key="MAIN">
|
|
134
|
+
<value>
|
|
135
|
+
<State />
|
|
136
|
+
</value>
|
|
137
|
+
</entry>
|
|
138
|
+
<entry key="a82f41bb-08d4-4df9-9063-096f78d1883c">
|
|
82
139
|
<value>
|
|
83
140
|
<State>
|
|
84
141
|
<option name="FILTERS">
|