Skip to content

Commit 453516f

Browse files
committed
feat: 🎸 提交开源版本
0 parents  commit 453516f

File tree

207 files changed

+8231
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+8231
-0
lines changed

Diff for: .editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
quote_type = single
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

Diff for: .eslintignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 忽略目录
2+
node_modules
3+
test-cases
4+
test
5+
output
6+
build
7+
dist
8+
demo
9+
es
10+
lib
11+
.*
12+
~*
13+
14+
# 忽略文件
15+
**/*.min.js
16+
**/*-min.js
17+
**/*.bundle.js

Diff for: .eslintrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: 'eslint-config-ali/typescript/react',
3+
};

Diff for: .gitignore

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# project custom
2+
build
3+
dist
4+
packages/*/lib/
5+
packages/*/es/
6+
packages/*/dist/
7+
packages/*/output/
8+
package-lock.json
9+
yarn.lock
10+
deploy-space/packages
11+
deploy-space/.env
12+
13+
14+
# IDE
15+
.vscode
16+
.idea
17+
18+
# Logs
19+
logs
20+
*.log
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
lerna-debug.log*
25+
26+
# Runtime data
27+
pids
28+
*.pid
29+
*.seed
30+
*.pid.lock
31+
32+
33+
# Directory for instrumented libs generated by jscoverage/JSCover
34+
lib-cov
35+
36+
# Coverage directory used by tools like istanbul
37+
coverage
38+
39+
# nyc test coverage
40+
.nyc_output
41+
42+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
43+
.grunt
44+
45+
# Bower dependency directory (https://bower.io/)
46+
bower_components
47+
48+
# node-waf configuration
49+
.lock-wscript
50+
51+
# Compiled binary addons (https://nodejs.org/api/addons.html)
52+
build/Release
53+
lib
54+
55+
# Dependency directories
56+
node_modules/
57+
jspm_packages/
58+
59+
# TypeScript v1 declaration files
60+
typings/
61+
62+
# Optional npm cache directory
63+
.npm
64+
65+
# Optional eslint cache
66+
.eslintcache
67+
68+
# Optional REPL history
69+
.node_repl_history
70+
71+
# Output of 'npm pack'
72+
*.tgz
73+
74+
# Yarn Integrity file
75+
.yarn-integrity
76+
77+
# dotenv environment variables file
78+
.env
79+
.env.test
80+
81+
# parcel-bundler cache (https://parceljs.org/)
82+
.cache
83+
84+
# next.js build output
85+
.next
86+
87+
# nuxt.js build output
88+
.nuxt
89+
90+
# vuepress build output
91+
.vuepress/dist
92+
93+
# Serverless directories
94+
.serverless/
95+
96+
# FuseBox cache
97+
.fusebox/
98+
99+
# DynamoDB Local files
100+
.dynamodb/
101+
102+
# mac config files
103+
.DS_Store
104+
105+
# codealike
106+
codealike.json
107+
.node

Diff for: .prettierrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
printWidth: 100,
3+
tabWidth: 2,
4+
semi: true,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
};

Diff for: .stylelintignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 忽略目录
2+
node_modules/
3+
build/
4+
dist/
5+
6+
# 忽略文件
7+
**/*.min.css
8+
**/*-min.css
9+
**/*.bundle.css

Diff for: .stylelintrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: 'stylelint-config-ali',
3+
};

0 commit comments

Comments
 (0)