X Tutup
Skip to content

Commit cc5bda3

Browse files
authored
Merge pull request alibaba#1 from alibaba/feat/add-components-pane
feat: add component pane
2 parents d047ede + 685fe5d commit cc5bda3

Some content is hidden

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

46 files changed

+6919
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"template": "alif2e"
3+
}
Lines changed: 13 additions & 0 deletions
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
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules/
2+
build/
3+
dist/
4+
**/*.min.js
5+
**/*-min.js
6+
**/*.bundle.js
7+
*.js
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
extends: [
3+
'eslint-config-ali/typescript/react',
4+
'prettier',
5+
'prettier/@typescript-eslint',
6+
'prettier/react',
7+
],
8+
rules: {
9+
'no-param-reassign': 0,
10+
},
11+
};
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules/
5+
6+
# production
7+
build/
8+
dist/
9+
tmp/
10+
lib/
11+
es/
12+
13+
# misc
14+
.idea/
15+
.happypack
16+
.DS_Store
17+
*.swp
18+
*.dia~
19+
.ice
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
index.module.scss.d.ts
25+
26+
node_modules
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "markdownlint-config-ali"
3+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
build/
3+
dist/
4+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
demo
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
printWidth: 100,
3+
tabWidth: 2,
4+
semi: true,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
arrowParens: 'always',
8+
};
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules/
2+
build/
3+
dist/
4+
**/*.min.css
5+
**/*-min.css
6+
**/*.bundle.css
7+

0 commit comments

Comments
 (0)
X Tutup