esea_info 3 years ago
commit 22a3d76048
  1. 5
      .gitignore
  2. 91
      .vscode/settings.json
  3. 2
      README.md
  4. BIN
      icon.ico

5
.gitignore vendored

@ -0,0 +1,5 @@
/__pycache__/
/dist/
/build/
/*/__pycache__
*.log

@ -0,0 +1,91 @@
{
// ()
"editor.fontSize": 16,
// #editor.wordWrap# wordWrapColumn bounded 100
"editor.wordWrapColumn": 100,
// tab true false
"editor.detectIndentation": false,
// tab
"editor.tabSize": 4,
//
"editor.formatOnSave": false,
// vscode
"breadcrumbs.enabled": true,
// prettier ,C_cpp
"prettier.semi": false,
// prettier
"prettier.singleQuote": true,
// 'none' - ' es5' - ES5 'all' -
"prettier.trailingComma": "none",
//
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
// , ctrl+
"editor.mouseWheelZoom": true,
"editor.defaultFormatter": "ms-python.vscode-pylance",
"files.encoding":"utf8",
// python tab4
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 4
},
// astyle,astyle -C c++ java
// "astyle.executable": "D:\\AStyle\\bin\\astyle.exe", //window
// "astyle.executable": "/usr/bin/astyle", // linux
// "astyle.additional_languages": [
// "c",
// "cpp",
// "*.h",
// ],
// "astyle.cmd_options": [
// // -----------------------------------------------------------
// // "--style=ansi", //ANSI
// // "--style=kr", //Kernighan&Ritchie
// "--style=linux", //Linux
// //"--style=gnu", //GNU
// // "--style=java", //Java
// "--indent=spaces=4", //4
// "--indent-preproc-block",
// "--pad-oper", //
// "--pad-header",
// "--unpad-paren",
// "--suffix=none",
// "--align-pointer=name",
// "--lineend=linux",
// "--convert-tabs", //TAB
// "--verbose",
// // "--delete-empty-lines", //
// //"--pad-paren-in", //
// "--unpad-paren", //
// ],
// pylint --python pylint
// "python.linting.enabled": true,
// "python.linting.pylintEnabled": true,
// "python.linting.lintOnSave": true,
// "python.linting.pylintPath": "D:\\pylint\\bin\\pylint.exe",
// "python.linting.pylintArgs": [
// "--rcfile={path}/.pylintrc",
// "--extension-pkg-whitelist=PyQt5",
// "--disable=invalid-name,missing-module-docstring",
// "--disable=W0612,W0631,W0703,W0621,W0613,W0611,W1308,C0411,C0111,C0103,C0301,C0304,C0305,E1101,R0913,R0914,R0915,R0903" ,
// ],
// ,
"terminal.integrated.defaultProfile.windows" : "PowerShell",
// "terminal.integrated.defaultProfile.windows" : "Git Bash",
// "terminal.integrated.defaultProfile.windows" : "Windows PowerShell",
// "terminal.integrated.defaultProfile.windows": "Ubuntu-20.04 (WSL)",
"python.defaultInterpreterPath": "python3", // python3 python
"code-runner.executorMap": {
"python":"python3 -u $fullFileName"
},
}

@ -0,0 +1,2 @@
AWRAMS 数据接收处理
分支: server desktop

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Loading…
Cancel
Save