Added WebStorm project files

This commit is contained in:
Lukas Obermann
2020-02-04 03:12:13 +01:00
parent 5ad3c81666
commit 216bcd25fc
12 changed files with 105 additions and 3 deletions
+1
View File
@@ -23,3 +23,4 @@ publishSettings.json
Tables.zip
tables/
deploy/tablesSrc.json
src/App/Utilities/YAML/Schema/
+3
View File
@@ -0,0 +1,3 @@
# Default ignored files
/workspace.xml
/eslintPlugin.xml
+44
View File
@@ -0,0 +1,44 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<option name="RIGHT_MARGIN" value="0" />
<option name="SOFT_MARGINS" value="80,100" />
<JSCodeStyleSettings version="0">
<option name="SPACE_WITHIN_ARRAY_INITIALIZER_BRACKETS" value="true" />
<option name="FORCE_QUOTE_STYlE" value="true" />
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
<option name="SPACES_WITHIN_IMPORTS" value="true" />
</JSCodeStyleSettings>
<TypeScriptCodeStyleSettings version="0">
<option name="USE_SEMICOLON_AFTER_STATEMENT" value="false" />
<option name="FILE_NAME_STYLE" value="PASCAL_CASE" />
<option name="SPACE_WITHIN_ARRAY_INITIALIZER_BRACKETS" value="true" />
<option name="PREFER_AS_TYPE_CAST" value="true" />
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
<option name="SPACES_WITHIN_IMPORTS" value="true" />
<option name="IMPORT_SORT_MODULE_NAME" value="true" />
</TypeScriptCodeStyleSettings>
<codeStyleSettings language="JavaScript">
<option name="RIGHT_MARGIN" value="100" />
<option name="ELSE_ON_NEW_LINE" value="true" />
<option name="SPACE_AROUND_BITWISE_OPERATORS" value="false" />
<option name="SPACE_BEFORE_METHOD_PARENTHESES" value="true" />
<option name="METHOD_CALL_CHAIN_WRAP" value="2" />
<option name="IF_BRACE_FORCE" value="3" />
<option name="DOWHILE_BRACE_FORCE" value="3" />
<option name="WHILE_BRACE_FORCE" value="3" />
<option name="FOR_BRACE_FORCE" value="3" />
</codeStyleSettings>
<codeStyleSettings language="TypeScript">
<option name="RIGHT_MARGIN" value="100" />
<option name="SPACE_AROUND_UNARY_OPERATOR" value="true" />
<option name="SPACE_BEFORE_METHOD_CALL_PARENTHESES" value="true" />
<option name="SPACE_BEFORE_METHOD_PARENTHESES" value="true" />
<option name="WRAP_COMMENTS" value="true" />
<indentOptions>
<option name="INDENT_SIZE" value="2" />
<option name="CONTINUATION_INDENT_SIZE" value="2" />
<option name="TAB_SIZE" value="2" />
</indentOptions>
</codeStyleSettings>
</code_scheme>
</component>
+5
View File
@@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
</state>
</component>
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="TypeScriptCompiler">
<option name="recompileOnChanges" value="true" />
</component>
</project>
+9
View File
@@ -0,0 +1,9 @@
<component name="ProjectDictionaryState">
<dictionary name="lukas">
<words>
<w>lukasobermann</w>
<w>optolith</w>
<w>optolyth</w>
</words>
</dictionary>
</component>
+6
View File
@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="JSX" />
</component>
</project>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/optolith-client.iml" filepath="$PROJECT_DIR$/.idea/optolith-client.iml" />
</modules>
</component>
</project>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
Generated
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
+3 -3
View File
@@ -197,13 +197,13 @@ const openMainWindow = () => {
const copyAllFiles =
async (copy: (fileName: string) => Promise<void>) => {
await fmapF (tryIO (copy) ("window.json"))
(x => isLeft (x) ? (console.warn (fromLeft_ (x)), undefined) : undefined)
(x => isLeft (x) ? console.warn (fromLeft_ (x)) : undefined)
await fmapF (tryIO (copy) ("heroes.json"))
(x => isLeft (x) ? (console.warn (fromLeft_ (x)), undefined) : undefined)
(x => isLeft (x) ? console.warn (fromLeft_ (x)) : undefined)
await fmapF (tryIO (copy) ("config.json"))
(x => isLeft (x) ? (console.warn (fromLeft_ (x)), undefined) : undefined)
(x => isLeft (x) ? console.warn (fromLeft_ (x)) : undefined)
}
const main = () => {