Skip to content

Commit b87d981

Browse files
committed
chore: init project
1 parent fc68be4 commit b87d981

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed

.editorconfig

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# http://editorconfig.org
4+
5+
root = true
6+
7+
[**]
8+
9+
# 编码格式
10+
charset = utf-8
11+
12+
# 文件结尾符
13+
end_of_line = lf
14+
insert_final_newline = true
15+
16+
# 去除行尾空白字符
17+
trim_trailing_whitespace = true
18+
19+
# space 缩进
20+
indent_style = space
21+
indent_size = 2
22+
23+
[*.md]
24+
trim_trailing_whitespace = false

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.log
2+
.idea
3+
.DS_Store
4+
node_modules

index.js

Whitespace-only changes.

package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "css-sort-order",
3+
"version": "0.1.0",
4+
"main": "index.js",
5+
"repository": "https://github.com/BooheeFE/css-sort-order",
6+
"author": "simbawu <[email protected]>",
7+
"description": "CSS sort order for Boohee FE team",
8+
"keywords": [
9+
"css",
10+
"css-sort",
11+
],
12+
"license": "MIT"
13+
}

0 commit comments

Comments
 (0)