mirror of
https://github.com/HighCapable/moshi-companion.git
synced 2025-10-18 16:49:25 +08:00
Initial commit
This commit is contained in:
8
.idea/.gitignore
generated
vendored
Normal file
8
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
1
.idea/fileTemplates/includes/copyright-name.template
generated
Normal file
1
.idea/fileTemplates/includes/copyright-name.template
generated
Normal file
@@ -0,0 +1 @@
|
||||
2019 HighCapable
|
13
.idea/fileTemplates/includes/license-content.template
generated
Normal file
13
.idea/fileTemplates/includes/license-content.template
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
* Apache License Version 2.0
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
13
.idea/fileTemplates/includes/open-source-license-header.template
generated
Normal file
13
.idea/fileTemplates/includes/open-source-license-header.template
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* #parse("project-name") - #parse("project-description")
|
||||
|
||||
* Copyright (C) #parse("copyright-name")
|
||||
|
||||
* #parse("project-url")
|
||||
|
||||
*
|
||||
#parse("license-content")
|
||||
|
||||
*
|
||||
* This file is created by $USER on $DATE.
|
||||
*/
|
1
.idea/fileTemplates/includes/project-description.template
generated
Normal file
1
.idea/fileTemplates/includes/project-description.template
generated
Normal file
@@ -0,0 +1 @@
|
||||
Companion to Moshi with more practical features.
|
1
.idea/fileTemplates/includes/project-name.template
generated
Normal file
1
.idea/fileTemplates/includes/project-name.template
generated
Normal file
@@ -0,0 +1 @@
|
||||
Moshi Companion
|
1
.idea/fileTemplates/includes/project-url.template
generated
Normal file
1
.idea/fileTemplates/includes/project-url.template
generated
Normal file
@@ -0,0 +1 @@
|
||||
https://github.com/HighCapable/moshi-companion
|
6
.idea/fileTemplates/internal/Kotlin Annotation.kt
generated
Normal file
6
.idea/fileTemplates/internal/Kotlin Annotation.kt
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
#end
|
||||
|
||||
annotation class ${NAME}
|
7
.idea/fileTemplates/internal/Kotlin Class.kt
generated
Normal file
7
.idea/fileTemplates/internal/Kotlin Class.kt
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
|
||||
#end
|
||||
class ${NAME} {
|
||||
}
|
6
.idea/fileTemplates/internal/Kotlin Data Class.kt
generated
Normal file
6
.idea/fileTemplates/internal/Kotlin Data Class.kt
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
#end
|
||||
|
||||
data class ${NAME}()
|
7
.idea/fileTemplates/internal/Kotlin Enum.kt
generated
Normal file
7
.idea/fileTemplates/internal/Kotlin Enum.kt
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
|
||||
#end
|
||||
enum class ${NAME} {
|
||||
}
|
5
.idea/fileTemplates/internal/Kotlin File.kt
generated
Normal file
5
.idea/fileTemplates/internal/Kotlin File.kt
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
|
||||
#end
|
7
.idea/fileTemplates/internal/Kotlin Interface.kt
generated
Normal file
7
.idea/fileTemplates/internal/Kotlin Interface.kt
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
|
||||
#end
|
||||
interface ${NAME} {
|
||||
}
|
7
.idea/fileTemplates/internal/Kotlin Object.kt
generated
Normal file
7
.idea/fileTemplates/internal/Kotlin Object.kt
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
#parse("open-source-license-header")
|
||||
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
|
||||
#end
|
||||
|
||||
object ${NAME} {
|
||||
}
|
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="UnstableApiUsage" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||
</profile>
|
||||
</component>
|
10
.idea/migrations.xml
generated
Normal file
10
.idea/migrations.xml
generated
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectMigrations">
|
||||
<option name="MigrateToGradleLocalJavaHome">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
</set>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
17
.idea/runConfigurations.xml
generated
Normal file
17
.idea/runConfigurations.xml
generated
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RunConfigurationProducerService">
|
||||
<option name="ignoredProducers">
|
||||
<set>
|
||||
<option value="com.intellij.execution.junit.AbstractAllInDirectoryConfigurationProducer" />
|
||||
<option value="com.intellij.execution.junit.AllInPackageConfigurationProducer" />
|
||||
<option value="com.intellij.execution.junit.PatternConfigurationProducer" />
|
||||
<option value="com.intellij.execution.junit.TestInClassConfigurationProducer" />
|
||||
<option value="com.intellij.execution.junit.UniqueIdConfigurationProducer" />
|
||||
<option value="com.intellij.execution.junit.testDiscovery.JUnitTestDiscoveryConfigurationProducer" />
|
||||
<option value="org.jetbrains.kotlin.idea.junit.KotlinJUnitRunConfigurationProducer" />
|
||||
<option value="org.jetbrains.kotlin.idea.junit.KotlinPatternConfigurationProducer" />
|
||||
</set>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal 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>
|
Reference in New Issue
Block a user