@ben_12/eslint-plugin-dprint 0.10.2 → 0.11.1

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.
@@ -502,20 +502,27 @@
502
502
  },
503
503
  "forceMultiLineSpecifiers": {
504
504
  "description": "If code import/export specifiers should be forced to be on multiple lines.",
505
- "type": "boolean",
505
+ "type": "string",
506
506
  "oneOf": [
507
507
  {
508
508
  "description": "",
509
- "type": "boolean",
509
+ "type": "string",
510
510
  "enum": [
511
- true
511
+ "always"
512
512
  ]
513
513
  },
514
514
  {
515
515
  "description": "",
516
- "type": "boolean",
516
+ "type": "string",
517
517
  "enum": [
518
- false
518
+ "never"
519
+ ]
520
+ },
521
+ {
522
+ "description": "Force multiple lines only if importing more than one thing.",
523
+ "type": "string",
524
+ "enum": [
525
+ "whenMultiple"
519
526
  ]
520
527
  }
521
528
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ben_12/eslint-plugin-dprint",
3
- "version": "0.10.2",
3
+ "version": "0.11.1",
4
4
  "description": "An ESLint plugin that fixes code with dprint",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -15,7 +15,7 @@
15
15
  "@dprint/json": "^0.19.2",
16
16
  "@dprint/markdown": "^0.16.4",
17
17
  "@dprint/toml": "^0.6.1",
18
- "@dprint/typescript": "^0.89.3",
18
+ "@dprint/typescript": "^0.90.1",
19
19
  "eslint": ">=7.0.0"
20
20
  },
21
21
  "peerDependenciesMeta": {