@debbl/eslint-config 2.1.2 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1327,6 +1327,36 @@ async function prettier(options) {
1327
1327
  }
1328
1328
  ]
1329
1329
  }
1330
+ },
1331
+ {
1332
+ name: "eslint:prettier:markdown",
1333
+ files: [GLOB_MARKDOWN],
1334
+ plugins: {
1335
+ prettier: pluginPrettier
1336
+ },
1337
+ rules: {
1338
+ "prettier/prettier": [
1339
+ "warn",
1340
+ {
1341
+ parser: "markdown"
1342
+ }
1343
+ ]
1344
+ }
1345
+ },
1346
+ {
1347
+ name: "eslint:prettier:mdx",
1348
+ files: [GLOB_MDX],
1349
+ plugins: {
1350
+ prettier: pluginPrettier
1351
+ },
1352
+ rules: {
1353
+ "prettier/prettier": [
1354
+ "warn",
1355
+ {
1356
+ parser: "mdx"
1357
+ }
1358
+ ]
1359
+ }
1330
1360
  }
1331
1361
  ];
1332
1362
  }
package/dist/index.js CHANGED
@@ -1249,6 +1249,36 @@ async function prettier(options) {
1249
1249
  }
1250
1250
  ]
1251
1251
  }
1252
+ },
1253
+ {
1254
+ name: "eslint:prettier:markdown",
1255
+ files: [GLOB_MARKDOWN],
1256
+ plugins: {
1257
+ prettier: pluginPrettier
1258
+ },
1259
+ rules: {
1260
+ "prettier/prettier": [
1261
+ "warn",
1262
+ {
1263
+ parser: "markdown"
1264
+ }
1265
+ ]
1266
+ }
1267
+ },
1268
+ {
1269
+ name: "eslint:prettier:mdx",
1270
+ files: [GLOB_MDX],
1271
+ plugins: {
1272
+ prettier: pluginPrettier
1273
+ },
1274
+ rules: {
1275
+ "prettier/prettier": [
1276
+ "warn",
1277
+ {
1278
+ parser: "mdx"
1279
+ }
1280
+ ]
1281
+ }
1252
1282
  }
1253
1283
  ];
1254
1284
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@debbl/eslint-config",
3
3
  "type": "module",
4
- "version": "2.1.2",
4
+ "version": "2.2.0",
5
5
  "packageManager": "pnpm@8.11.0",
6
6
  "description": "Brendan Dash's ESLint config",
7
7
  "author": "Debbl <me@aiwan.run> (https://github.com/Debbl/)",