本地忽略文件更新 解决编译问题

master
LI-CCONG\李聪聪 8 months ago
parent 31f036ff18
commit 3ea21f73b4

2
.gitignore vendored

@ -1 +1,3 @@
jnpf-java-boot/log/jnpf-boot/ jnpf-java-boot/log/jnpf-boot/
.idea/
log/

@ -7,7 +7,7 @@ import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.Parameters; import io.swagger.v3.oas.annotations.Parameters;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import jdk.nashorn.internal.parser.Token; //import jdk.nashorn.internal.parser.Token;
import jnpf.base.entity.SysConfigEntity; import jnpf.base.entity.SysConfigEntity;
import jnpf.base.service.SysconfigService; import jnpf.base.service.SysconfigService;
import jnpf.message.entity.AccountConfigEntity; import jnpf.message.entity.AccountConfigEntity;

@ -2,12 +2,11 @@ package jnpf.model.wx;
import cn.hutool.core.codec.Base64; import cn.hutool.core.codec.Base64;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.sun.net.ssl.HttpsURLConnection;
import org.bouncycastle.jce.provider.BouncyCastleProvider; import org.bouncycastle.jce.provider.BouncyCastleProvider;
import javax.crypto.Cipher; import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec; import javax.crypto.spec.SecretKeySpec;
import javax.net.ssl.HttpsURLConnection;
import java.io.*; import java.io.*;
import java.net.URL; import java.net.URL;
import java.net.URLConnection; import java.net.URLConnection;

@ -1,7 +1,6 @@
# Compiled class file # Compiled class file
*.class *.class
# BlueJ files # BlueJ files
*.ctxt *.ctxt
@ -61,3 +60,5 @@ components/**/*.jsx
!components/**/__tests__/**/*.js.snap !components/**/__tests__/**/*.js.snap
/.history /.history
*.tmp *.tmp
.vscode/
package-lock.json

@ -1,60 +0,0 @@
{
"editor.formatOnSave": true,
"editor.tabSize": 2,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"typescript.validate.enable": false,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "auto",
"wrap_attributes_mode": "auto",
"wrap_line_length": 100,
"wrapped_attributes_per_line": "multiple",
"wrapped_attributes_indent": "auto",
"wrapped_attributes_end": "auto"
},
"prettier": {
"proseWrap": "never",
"printWidth": 200,
"semi": true, //
"singleQuote": true //
}
},
"editor.quickSuggestions": {
"strings": true
},
"element-helper.language": "zh-CN",
"element-helper.version": "2.5",
"element-helper.indent-size": 2,
"element-helper.quotes": "double",
"element-helper.pug-quotes": "single",
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"javascript.validate.enable": true,
"javascript.implicitProjectConfig.checkJs": true,
"[scss]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.inlineSuggest.enabled": true,
"bracket-pair-colorizer-2.depreciation-notice": false,
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"gitlens.hovers.currentLine.over": "line"
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save