File tree Expand file tree Collapse file tree 3 files changed +1
-9
lines changed
tests/__mocks__/rc-motion/lib Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ module.exports = {
8
8
'default-case' : 0 ,
9
9
'eslint-comments/disable-enable-pair' : 0 ,
10
10
'jsx-a11y/interactive-supports-focus' : 0 ,
11
- 'import/no-extraneous-dependencies' : [ 'error' , { devDependencies : true } ] ,
12
11
'@typescript-eslint/no-object-literal-type-assertion' : 0 ,
13
12
} ,
14
13
} ;
Original file line number Diff line number Diff line change 1
- /* eslint-disable import/no-named-as-default-member */
2
1
import '../assets/index.less' ;
3
2
import React from 'react' ;
4
3
import TreeSelect from '../src' ;
@@ -76,11 +75,7 @@ class Demo extends React.Component {
76
75
return (
77
76
< div >
78
77
< TreeSelect { ...tProps } />
79
- < input
80
- type = "checkbox"
81
- onChange = { e => this . switch ( e . target . checked ) }
82
- /> { ' ' }
83
- 禁用
78
+ < input type = "checkbox" onChange = { e => this . switch ( e . target . checked ) } /> 禁用
84
79
</ div >
85
80
) ;
86
81
}
Original file line number Diff line number Diff line change 1
- /* eslint-disable import/no-extraneous-dependencies */
2
-
3
1
import React from 'react' ;
4
2
import { genCSSMotion } from 'rc-motion/lib/CSSMotion' ;
5
3
import CSSMotionList , { genCSSMotionList } from 'rc-motion/lib/CSSMotionList' ;
You can’t perform that action at this time.
0 commit comments