Skip to content

Commit 0a1429c

Browse files
committed
chore: move files from shell monorepo here
1 parent ffd8ffe commit 0a1429c

File tree

763 files changed

+39032
-5286
lines changed

Some content is hidden

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

763 files changed

+39032
-5286
lines changed

.bowerrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
root = true
44

5-
[*.{html,js,ts,css,scss}]
5+
[*.{js,ts,tsx,vue,css,scss,html,yml,md,json}]
66
charset = utf-8
77
indent_style = space
88
indent_size = 2

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package.json
2+
*-lock.json
3+
.eslintrc.json
4+
dist

.eslintrc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"root": true,
3+
"extends": ["@ntks/eslint-config", "plugin:react/recommended", "plugin:react/jsx-runtime"],
4+
"plugins": ["react"],
5+
"parserOptions": {
6+
"ecmaFeatures": {
7+
"experimentalObjectRestSpread": true,
8+
"jsx": true
9+
},
10+
"sourceType": "module"
11+
}
12+
}

.gitignore

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
11
*.log
22

3+
.DS_Store
34
.*-tmp
45
.*-cache
5-
.DS_Store
6+
.cache
7+
.npmrc
68
.git
9+
.gitmodules
710
.idea
811
.jekyll-metadata
912
.tmp
13+
.umi
1014

1115
_site
1216

1317
bower_components
1418
node_modules
1519
dist
1620

21+
/external
1722
/backup
18-
19-
/site/_adaptors/vendor
20-
/site/_admin/bower_components
21-
/site/_admin/vendor
22-
/site/_cookbook/_book
23-
24-
/src/vendors
25-
26-
/test/assets
27-
/test/jquery/assets
28-
/test/vue/*.bundle.js

.npmignore

Lines changed: 0 additions & 28 deletions
This file was deleted.

.prettierignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
**/*.md
2+
**/*.svg
3+
**/*.ejs
4+
**/*.html
5+
package.json
6+
.umi
7+
.umi-production
8+
.umi-test

.prettierrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"printWidth": 100,
3+
"useTabs": false,
4+
"tabWidth": 2,
5+
"semi": true,
6+
"singleQuote": true,
7+
"jsxSingleQuote": true,
8+
"quoteProps": "as-needed",
9+
"trailingComma": "all",
10+
"bracketSpacing": true,
11+
"jsxBracketSameLine": false,
12+
"arrowParens": "avoid",
13+
"vueIndentScriptAndStyle": false,
14+
"endOfLine": "auto",
15+
"overrides": [
16+
{
17+
"files": ".prettierrc",
18+
"options": { "parser": "json" }
19+
}
20+
]
21+
}

.prettierrc.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.stylelintignore

Whitespace-only changes.

0 commit comments

Comments
 (0)