chore: add prettier ignore and format demo (#27270)

This commit is contained in:
Tom Xu 2020-10-21 11:06:07 +08:00 committed by GitHub
parent b5dc079228
commit 0822ac618f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 40 additions and 82 deletions

View File

@ -1,4 +1,8 @@
**/*.png
**/*.svg
CODEOWNERS
.dockerignore
Dockerfile.ui-test
package.json
.umi
.umi-production
@ -17,6 +21,8 @@ yarn-error.log
*.snap
components/*/*.js
components/*/*.jsx
components/*/*.md
docs/**/*.md
.gitignore
.npmignore
.prettierignore

View File

@ -2,8 +2,7 @@
## Supported Versions
Use this section to tell people about which versions of your project are
currently being supported with security updates.
Use this section to tell people about which versions of your project are currently being supported with security updates.
| Version | Supported |
| ------- | ------------------ |
@ -14,6 +13,4 @@ currently being supported with security updates.
Use this section to tell people how to report a vulnerability.
Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.
Tell them where to go, how often they can expect to get an update on a reported vulnerability, what to expect if the vulnerability is accepted or declined, etc.

View File

@ -57,9 +57,7 @@ ReactDOM.render(
}
return (
<div style={{ padding: 8 }}>
<Typography.Title level={4}>
Custom header
</Typography.Title>
<Typography.Title level={4}>Custom header</Typography.Title>
<Row gutter={8}>
<Col>
<Radio.Group size="small" onChange={e => onTypeChange(e.target.value)} value={type}>

View File

@ -62,11 +62,7 @@ function dropdownRender(menus) {
}
ReactDOM.render(
<Cascader
options={options}
dropdownRender={dropdownRender}
placeholder="Please select"
/>,
<Cascader options={options} dropdownRender={dropdownRender} placeholder="Please select" />,
mountNode,
);
```

View File

@ -30,16 +30,8 @@ const data = [
</p>
),
datetime: (
<Tooltip
title={moment()
.subtract(1, 'days')
.format('YYYY-MM-DD HH:mm:ss')}
>
<span>
{moment()
.subtract(1, 'days')
.fromNow()}
</span>
<Tooltip title={moment().subtract(1, 'days').format('YYYY-MM-DD HH:mm:ss')}>
<span>{moment().subtract(1, 'days').fromNow()}</span>
</Tooltip>
),
},
@ -55,16 +47,8 @@ const data = [
</p>
),
datetime: (
<Tooltip
title={moment()
.subtract(2, 'days')
.format('YYYY-MM-DD HH:mm:ss')}
>
<span>
{moment()
.subtract(2, 'days')
.fromNow()}
</span>
<Tooltip title={moment().subtract(2, 'days').format('YYYY-MM-DD HH:mm:ss')}>
<span>{moment().subtract(2, 'days').fromNow()}</span>
</Tooltip>
),
},

View File

@ -35,14 +35,14 @@ const Demo = () => {
const onGenderChange = value => {
switch (value) {
case "male":
form.setFieldsValue({ note: "Hi, man!" });
case 'male':
form.setFieldsValue({ note: 'Hi, man!' });
return;
case "female":
form.setFieldsValue({ note: "Hi, lady!" });
case 'female':
form.setFieldsValue({ note: 'Hi, lady!' });
return;
case "other":
form.setFieldsValue({ note: "Hi there!" });
case 'other':
form.setFieldsValue({ note: 'Hi there!' });
return;
}
};

View File

@ -251,7 +251,10 @@ const RegistrationForm = () => {
name="agreement"
valuePropName="checked"
rules={[
{ validator:(_, value) => value ? Promise.resolve() : Promise.reject('Should accept agreement') },
{
validator: (_, value) =>
value ? Promise.resolve() : Promise.reject('Should accept agreement'),
},
]}
{...tailFormItemLayout}
>

View File

@ -57,11 +57,7 @@ ReactDOM.render(
</>
)}
/>
<List
grid={{ gutter: 16, column: 4 }}
dataSource={data}
renderItem={() => <ListItem />}
/>
<List grid={{ gutter: 16, column: 4 }} dataSource={data} renderItem={() => <ListItem />} />
<List
grid={{ gutter: 16, column: 4 }}
dataSource={data}

View File

@ -46,9 +46,7 @@ class App extends React.Component {
render() {
return (
<>
<Button onClick={this.showModal}>
Open Draggable Modal
</Button>
<Button onClick={this.showModal}>Open Draggable Modal</Button>
<Modal
title={
<div

View File

@ -38,7 +38,7 @@ const App = () => {
</Modal>
</>
);
}
};
ReactDOM.render(<App />, mountNode);
```

View File

@ -20,15 +20,12 @@ import { Radio, Badge } from 'antd';
ReactDOM.render(
<Radio.Group buttonStyle="solid">
<Badge count={1}>
<Radio.Button value={1}>
Click Me
</Radio.Button>
<Radio.Button value={1}>Click Me</Radio.Button>
</Badge>
<Badge count={2}>
<Radio.Button value={2}>
Not Me
</Radio.Button>
<Radio.Button value={2}>Not Me</Radio.Button>
</Badge>
</Radio.Group>
, mountNode);
</Radio.Group>,
mountNode,
);
```

View File

@ -22,10 +22,7 @@ function onChange(time, timeString) {
}
ReactDOM.render(
<TimePicker
onChange={onChange}
defaultOpenValue={moment('00:00:00', 'HH:mm:ss')}
/>,
<TimePicker onChange={onChange} defaultOpenValue={moment('00:00:00', 'HH:mm:ss')} />,
mountNode,
);
```

View File

@ -17,11 +17,5 @@ A disabled state of the `TimePicker`.
import { TimePicker } from 'antd';
import moment from 'moment';
ReactDOM.render(
<TimePicker
defaultValue={moment('12:08:23', 'HH:mm:ss')}
disabled
/>,
mountNode,
);
ReactDOM.render(<TimePicker defaultValue={moment('12:08:23', 'HH:mm:ss')} disabled />, mountNode);
```

View File

@ -19,11 +19,5 @@ import moment from 'moment';
const format = 'HH:mm';
ReactDOM.render(
<TimePicker
defaultValue={moment('12:08', format)}
format={format}
/>,
mountNode,
);
ReactDOM.render(<TimePicker defaultValue={moment('12:08', format)} format={format} />, mountNode);
```

View File

@ -25,7 +25,7 @@ const Demo = () => {
};
return <TimePicker value={value} onChange={onChange} />;
}
};
ReactDOM.render(<Demo />, mountNode);
```

View File

@ -27,9 +27,7 @@ class Demo extends React.Component {
};
genTreeNode = (parentId, isLeaf = false) => {
const random = Math.random()
.toString(36)
.substring(2, 6);
const random = Math.random().toString(36).substring(2, 6);
return {
id: random,
pId: parentId,

View File

@ -70,7 +70,7 @@ const treeData = [
{ title: 'leaf', key: '0-1-0-1', icon: <CarryOutOutlined /> },
],
},
]
],
},
];