-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(project): remove Formily.* use cases (#1820)
- Loading branch information
Showing
227 changed files
with
1,575 additions
and
4,433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,9 @@ website | |
gh-pages | ||
weex | ||
build.ts | ||
docs | ||
packages/vue | ||
packages/element | ||
esm | ||
doc-site | ||
public | ||
package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
|
||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Create new issue | ||
url: https://v2.formilyjs.org/guide/issue-helper | ||
about: The issue which is not created via https://v2.formilyjs.org/guide/issue-helper will be closed immediately. | ||
- name: ✨ Question Answer / Idea | ||
- name: ✨ Question Answer / Idea | ||
url: https://github.com/alibaba/formily/discussions/new | ||
about: All questions can be solved here. At the same time you can provide all your ideas here. | ||
- name: 📖 View documentation | ||
url: https://v2.formilyjs.org | ||
about: Official Formily documentation | ||
about: Official Formily documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ doc-site | |
.lerna-changelog | ||
public | ||
.history | ||
.lint-report.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier/@typescript-eslint" | ||
], | ||
"env": { | ||
"node": true | ||
}, | ||
"plugins": ["@typescript-eslint", "react", "prettier", "markdown"], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 10, | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
}, | ||
"rules": { | ||
"prettier/prettier": 0, | ||
// don't force es6 functions to include space before paren | ||
"space-before-function-paren": 0, | ||
"react/prop-types": 0, | ||
"react/no-find-dom-node": 0, | ||
"react/display-name": 0, | ||
// allow specifying true explicitly for boolean props | ||
"react/jsx-boolean-value": 0, | ||
"react/no-did-update-set-state": 0, | ||
// maybe we should no-public | ||
"@typescript-eslint/explicit-member-accessibility": 0, | ||
"@typescript-eslint/interface-name-prefix": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/explicit-function-return-type": 0, | ||
"@typescript-eslint/no-parameter-properties": 0, | ||
"@typescript-eslint/array-type": 0, | ||
"@typescript-eslint/no-object-literal-type-assertion": 0, | ||
"@typescript-eslint/no-use-before-define": 0, | ||
"@typescript-eslint/no-unused-vars": 1, | ||
"@typescript-eslint/no-namespace": 0, | ||
"@typescript-eslint/ban-types": 0, | ||
"@typescript-eslint/adjacent-overload-signatures": 0, | ||
"@typescript-eslint/explicit-module-boundary-types": 0, | ||
"@typescript-eslint/triple-slash-reference": 0, | ||
"@typescript-eslint/no-empty-function": 0, | ||
"no-console": [ | ||
"error", | ||
{ | ||
"allow": ["warn", "error", "info"] | ||
} | ||
], | ||
"prefer-const": 0, | ||
"no-var": 1, | ||
"prefer-rest-params": 0 | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.md.{jsx,tsx}"], | ||
"processor": "markdown/markdown" | ||
}, | ||
{ | ||
"files": ["**/*.md/*.{jsx,tsx}"], | ||
"rules": { | ||
"@typescript-eslint/no-unused-vars": "error", | ||
"no-unused-vars": "error", | ||
"no-console": "off", | ||
"react/display-name": "off", | ||
"react/prop-types": "off" | ||
} | ||
}, | ||
{ | ||
"files": ["**/*.md/*.{js,ts}"], | ||
"rules": { | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"no-unused-vars": "off", | ||
"no-console": "off", | ||
"react/display-name": "off", | ||
"react/prop-types": "off" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ls/chrome-extension/config/webpack.dev.js → ...ls/chrome-extension/config/webpack.dev.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.