mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
25 lines
267 B
JavaScript
25 lines
267 B
JavaScript
const docBoilerplateGenerator = name => `# ${name}
|
|
|
|
Write a useful explanation here!
|
|
|
|
### References
|
|
|
|
1.
|
|
|
|
## Rule details
|
|
|
|
This rule takes no arguments.
|
|
|
|
### Succeed
|
|
\`\`\`jsx
|
|
<div />
|
|
\`\`\`
|
|
|
|
### Fail
|
|
\`\`\`jsx
|
|
|
|
\`\`\`
|
|
`;
|
|
|
|
module.exports = docBoilerplateGenerator;
|