-
-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: use father #197
Merged
chore: use father #197
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
23515f8
chore: use father
xrkffgg c10fdab
Update .gitignore
xrkffgg 9aac8dc
chore: update
xrkffgg 75920a8
update travis
xrkffgg e08fc8d
update
xrkffgg 80190bb
modified: package.json
xrkffgg d4d5d3e
fix typings
xrkffgg 4876eec
modified: package.json
xrkffgg 2337edf
modified: package.json
xrkffgg cd83895
modified: package.json
xrkffgg a78cd66
modified: package.json
xrkffgg fadaed0
add coverage
xrkffgg 936c675
update expect
xrkffgg 23b450c
test
xrkffgg d9604fa
fix one test
zombieJ ec3ec27
update ref
zombieJ b2ee866
update
xrkffgg c52992c
update test
xrkffgg c0f7660
update test
xrkffgg 7537b9a
update test
xrkffgg 13121f7
update test
xrkffgg a1cc01d
fix compile
xrkffgg fcae528
fix transformOrigin
xrkffgg ee3dd73
fix input
xrkffgg a925939
fix: click mask to close
kerm1it e0a7fe1
fix(test): getContainer
kerm1it f648048
fix activeElement
xrkffgg c390abd
Merge branch 'up-father' of github.com:react-component/dialog into up…
xrkffgg 2f2637a
simple tarnsformOrigin
xrkffgg 55e7a84
update test
xrkffgg 3f701a6
fix overflow
xrkffgg 0bcb9d0
fix eslint
xrkffgg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const base = require("@umijs/fabric/dist/eslint"); | ||
|
||
module.exports = { | ||
...base, | ||
rules: { | ||
...base.rules, | ||
"arrow-parens": 0, | ||
"react/no-array-index-key": 0, | ||
"react/sort-comp": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/no-empty-interface": 0, | ||
"@typescript-eslint/no-inferrable-types": 0, | ||
"react/no-find-dom-node": 0, | ||
"react/require-default-props": 0, | ||
"no-confusing-arrow": 0, | ||
"import/no-named-as-default-member": 0, | ||
"jsx-a11y/label-has-for": 0, | ||
"jsx-a11y/label-has-associated-control": 0, | ||
"import/no-extraneous-dependencies": 0, | ||
"react/button-has-type": 0, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个规则需要开一下,没有的地方补一补包括 example 的 |
||
"jsx-a11y/no-noninteractive-tabindex": 0, | ||
"jsx-a11y/no-autofocus": 0, | ||
}, | ||
}; |
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,9 @@ | ||
export default { | ||
cjs: "babel", | ||
esm: { type: "babel", importLibToEs: true }, | ||
preCommit: { | ||
eslint: true, | ||
prettier: true, | ||
}, | ||
runtimeHelpers: true, | ||
}; |
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,6 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"proseWrap": "never", | ||
"printWidth": 100 | ||
} |
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
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好像没看到用到 findDOMNode 的地方,这个 rule 可以删了~