1
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
Bauke ad605abe8d
Version 0.1.2. 2022-12-03 18:23:28 +01:00
Bauke a5ef541133
Add an import to MDX for testing no-unused-vars. 2022-12-03 18:22:40 +01:00
Bauke 3f594c3287
Disable no-unused-vars in MDX files. 2022-12-03 18:22:19 +01:00
5 changed files with 9 additions and 4 deletions

View File

@ -32,7 +32,8 @@
{ {
"enforceForJSX": false "enforceForJSX": false
} }
] ],
"no-unused-vars": "off"
} }
} }
], ],

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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 />