This commit is contained in:
2025-09-10 09:16:58 +08:00
commit 5db81fd1b8
8 changed files with 64 additions and 0 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

8
.idea/YunNanProject.iml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="jdk" jdkName="yunnan" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

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>

View File

@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

4
.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="yunnan" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml generated Normal file
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/YunNanProject.iml" filepath="$PROJECT_DIR$/.idea/YunNanProject.iml" />
</modules>
</component>
</project>

13
内网GIT提交.cmd Normal file
View File

@@ -0,0 +1,13 @@
@echo off
del /q "d:\dsWork\dsProject\.git\config"
copy "d:\dsWork\dsProject\Doc\config-in-network" "d:\dsWork\dsProject\.git\config"
git config --global core.autocrlf false
git add -A .
git commit -am 'commit'
git pull
git push origin main

11
外网GIT提交.cmd Normal file
View File

@@ -0,0 +1,11 @@
@echo off
del /q "d:\dsWork\dsProject\.git\config"
copy "d:\dsWork\dsProject\Doc\config-out-network" "d:\dsWork\dsProject\.git\config"
git config --global core.autocrlf false
git add -A .
git commit -am 'commit'
git pull
git push origin main