Compare commits
3 Commits
20e40118ae
...
ad605abe8d
Author | SHA1 | Date |
---|---|---|
Bauke | ad605abe8d | |
Bauke | a5ef541133 | |
Bauke | 3f594c3287 |
|
@ -32,7 +32,8 @@
|
||||||
{
|
{
|
||||||
"enforceForJSX": false
|
"enforceForJSX": false
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"no-unused-vars": "off"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@bauke/eslint-config",
|
"name": "@bauke/eslint-config",
|
||||||
"description": "Shareable ESLint configuration.",
|
"description": "Shareable ESLint configuration.",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"license": "Unlicense",
|
"license": "Unlicense",
|
||||||
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
|
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@bauke/prettier-config",
|
"name": "@bauke/prettier-config",
|
||||||
"description": "Shareable Prettier configuration.",
|
"description": "Shareable Prettier configuration.",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"license": "Unlicense",
|
"license": "Unlicense",
|
||||||
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
|
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@bauke/stylelint-config",
|
"name": "@bauke/stylelint-config",
|
||||||
"description": "Shareable Stylelint configuration.",
|
"description": "Shareable Stylelint configuration.",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"license": "Unlicense",
|
"license": "Unlicense",
|
||||||
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
|
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import AstroSample from "./sample.astro";
|
||||||
|
|
||||||
export const title = "Sample MDX";
|
export const title = "Sample MDX";
|
||||||
|
|
||||||
export const Header = () => {
|
export const Header = () => {
|
||||||
|
@ -14,3 +16,5 @@ export const Header = () => {
|
||||||
|
|
||||||
- Section 1
|
- Section 1
|
||||||
- Section 2
|
- Section 2
|
||||||
|
|
||||||
|
<AstroSample />
|
||||||
|
|
Loading…
Reference in New Issue