Skip to content

Commit 189fda8

Browse files
author
realign
committedJul 19, 2020
re: first version
1 parent 733ed7d commit 189fda8

Some content is hidden

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

72 files changed

+12894
-1
lines changed
 

‎.editorconfig

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file 表示是最顶层的配置文件,发现设为true时,才会停止查找.editorconfig文件
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file 对于所有的文件 始终在文件末尾插入一个新行
7+
[*]
8+
# end_of_line = lf
9+
# insert_final_newline = true
10+
11+
# Matches multiple files with brace expansion notation
12+
# Set default charset 对于所有的js,py文件,设置文件字符集为utf-8
13+
[*.{less,css,js,ts,jsx,tsx}]
14+
charset = utf-8
15+
16+
# 4 space indentation 控制py文件类型的缩进大小
17+
[src/*/**.{less,css,js,ts,jsx,tsx}]
18+
indent_style = space
19+
indent_size = 2
20+
21+
[plugins/*.js]
22+
indent_style = space
23+
indent_size = 2
24+
25+
# Tab indentation (no size specified) 设置某中文件的缩进风格为tab Makefile未指明
26+
# [Makefile]
27+
# indent_style = tab
28+
29+
# Indentation override for all JS under lib directory 设置在lib目录下所有JS的缩进为
30+
# [lib/**.js]
31+
# indent_style = space
32+
# indent_size = 2
33+
34+
# Matches the exact files either package.json or .travis.yml 设置确切文件 package.json/.travis/.yml的缩进类型
35+
[{*.json,.travis.yml}]
36+
indent_style = space
37+
indent_size = 2

‎.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.rts2_cache_cjs
2+
.rts2_cache_es
3+
.rts2_cache_umd
4+
dist
5+
node_modules
6+
7+
code/rax/src
8+
code/react/src
9+
10+
example/build
11+
12+
code-ts/rax/src
13+
code-ts/react/src
14+
15+
.DS_Store
16+
package-lock.json

0 commit comments

Comments
 (0)
Please sign in to comment.