Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dir backup is enable #9

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added coffee/%
Empty file.
27 changes: 27 additions & 0 deletions coffee/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
module.exports = {
extends: [
"eslint:recommended",
"plugin:react/recommended",
'wind/node'],
globals: {
FileReader: false,
DOMException: false,
Headers: false,
fetch: false,
},
rules: {
'strict': [0],
'vars-on-top': 0,
'global-require': 0,
"indent": 0,
"no-tabs":0,
"prettier/prettier": 0,
"spaced-comment":0,
'new-cap':0,
},
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module',
allowImportExportEverywhere: true,
}
};
50 changes: 50 additions & 0 deletions coffee/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
dist
output
tmp
mlib


# .开头的
.*

# ~结尾的
*~

# nodejs的
node_modules/
package-lock.json



# 自己做实验要用的
log/


# log文件
*.log
log.*


# png文件夹也不能上传
png/


# 压缩文件一般情况也是不必版本控制的

*.zip
*.tar

# 各种lock文件也不该被版本控制, 这些都是自动生成的.
*.lock


# 不能忽略的js文件
!package.json
#不能忽略node的配置文件
!.eslintrc.js

#不能忽略gitingnore文件:
!.gitignore

#不能忽略vscode的配置文件
!.vscode
20 changes: 20 additions & 0 deletions coffee/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}",
"outFiles": [
"${workspaceFolder}/dist/api/**/**.js"
]
}
]
}
Loading