Skip to content

Commit e664158

Browse files
committed
pref: move projects
1 parent f34abe6 commit e664158

Some content is hidden

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

95 files changed

+1849
-6701
lines changed

Diff for: .editorconfig

-5
This file was deleted.

Diff for: .eslintignore

-6
This file was deleted.

Diff for: .eslintrc.cjs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* eslint-env node */
2+
require('@rushstack/eslint-patch/modern-module-resolution')
3+
4+
module.exports = {
5+
root: true,
6+
extends: [
7+
'plugin:vue/vue3-recommended',
8+
'eslint:recommended',
9+
'@vue/eslint-config-typescript/recommended',
10+
'@vue/eslint-config-prettier',
11+
],
12+
env: {
13+
'vue/setup-compiler-macros': true,
14+
},
15+
rules: {
16+
'prettier/prettier': ['error', { semi: false, singleQuote: true, printWidth: 120 }],
17+
// 临时关掉
18+
'@typescript-eslint/no-explicit-any': 'off',
19+
},
20+
}

Diff for: .eslintrc.js

-35
This file was deleted.

Diff for: .gitignore

+24-38
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,28 @@
1-
2-
# See https://help.github.com/ignore-files/ for more about ignoring files.
3-
4-
# dependencies
5-
node_modules/
6-
7-
# testing
8-
/coverage
9-
10-
# misc
11-
.DS_Store
12-
.env.local
13-
.env.development.local
14-
.env.test.local
15-
.env.production.local
16-
1+
# Logs
2+
logs
3+
*.log
174
npm-debug.log*
185
yarn-debug.log*
196
yarn-error.log*
20-
package-lock.json*
21-
yarn.lock
22-
23-
# IDE
24-
/.idea
25-
26-
lib/
27-
es/
28-
dist/
29-
build/
30-
.vscode
31-
.history
7+
pnpm-debug.log*
8+
lerna-debug.log*
329

33-
# publish
34-
*.tgz
35-
36-
/src/icons
37-
/*.js
38-
/*.d.ts
39-
!.jest.js
40-
!Icon.d.ts
41-
!.fatherrc.js
42-
!.eslintrc.js
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.vscode/*
22+
!.vscode/extensions.json
23+
.idea
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?

Diff for: .jest.js

-47
This file was deleted.

Diff for: .npmignore

-16
This file was deleted.

Diff for: .prettierignore

-17
This file was deleted.

Diff for: .prettierrc

-17
This file was deleted.

Diff for: README.en-US.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[简体中文](./README.zh-CN.md) | English
2+
3+
# Pro Components
4+
5+
The Pro Series components are placed here to support heavy-duty components.
6+
7+
[![Vue Support](https://img.shields.io/badge/support-Vue3-green?style=flat)](./package.json) [![Vue Grammar Level](https://img.shields.io/badge/full-Composition%20API-blue?style=flat)](https://v3.vuejs.org/guide/composition-api-introduction.html) [![NPM downloads](http://img.shields.io/npm/dm/@ant-design-vue/pro-layout.svg?style=flat)](https://npmjs.org/package/@ant-design-vue/pro-layout) [![License](https://img.shields.io/github/license/vueComponent/pro-layout)](./LICENSE)
8+
9+
## 🖥 Browser compatibility
10+
11+
- Modern browsers. You can use [1.x](https://www.npmjs.com/package/@ant-design-vue/pro-layout/v/1.0.11) for Internet Explorer 11.
12+
- [Electron](https://www.electronjs.org/)
13+
14+
| [![edge](https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![Edge](https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![chrome](https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![safari](https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![electron_48x48](https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png)](http://godban.github.io/browsers-support-badges/) |
15+
| --- | --- | --- | --- | --- |
16+
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
17+
18+
19+
## Contributing
20+
21+
Any type of contribution is welcome, here are some examples of how you may contribute to this project 😃 :
22+
23+
- Use Ant Design Vue、Pro and Pro Components in your daily work.
24+
- Submit [Issue](https://github.com/vueComponent/pro-components/issues) to report bugs or ask questions.
25+
- Propose [Pull Request](https://github.com/vueComponent/pro-components/pulls) to improve our code.
26+
27+
## Component Kanban
28+
29+
| Components | Downloads | Downloads a version |
30+
| --- | --- | --- |
31+
| pro-layout | [![layout](https://img.shields.io/npm/dw/@ant-design-vue/pro-layout.svg)](https://www.npmjs.com/package/@ant-design-vue/pro-layout) | [![npm package](https://img.shields.io/npm/v/@ant-design-vue/pro-layout.svg?style=flat-square?style=flat-square)](https://www.npmjs.com/package/@ant-design-vue/pro-layout) |
32+
33+
## LICENSE
34+
35+
MIT

0 commit comments

Comments
 (0)