Skip to content

Commit 907425f

Browse files
committed
init
0 parents  commit 907425f

9 files changed

+7254
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
*.log
5+
node_modules/
6+
dist
7+
.deploy*/
8+
9+
# dependencies
10+
# dependencies
11+
/node_modules
12+
yarn.lock
13+
14+
# IDEs and editors
15+
/.idea
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# IDE - VSCode
24+
.vscode/*
25+
# !.vscode/settings.json
26+
# !.vscode/tasks.json
27+
# !.vscode/launch.json
28+
# !.vscode/extensions.json
29+
30+
# misc
31+
/.sass-cache
32+
/connect.lock
33+
/coverage
34+
/libpeerconnection.log
35+
npm-debug.log
36+
testem.log
37+
/typings
38+
39+
# e2e
40+
/e2e/src/*.js
41+
/e2e/src/*.map
42+
/cypress/screenshots

.prettierrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"useTabs": false,
3+
"printWidth": 80,
4+
"tabWidth": 2,
5+
"singleQuote": true,
6+
"trailingComma": "none",
7+
"jsxBracketSameLine": false,
8+
"parser": "babylon"
9+
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# JavaScript 数据结构与算法

0 commit comments

Comments
 (0)