@ben_12/eslint-plugin-dprint 0.11.2 → 0.12.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.
@@ -102,6 +102,26 @@
102
102
  }
103
103
  ]
104
104
  },
105
+ "unorderedListKind": {
106
+ "description": "The character to use for unordered lists.",
107
+ "type": "string",
108
+ "oneOf": [
109
+ {
110
+ "description": "Uses dashes (-) as primary character for lists.",
111
+ "type": "string",
112
+ "enum": [
113
+ "dashes"
114
+ ]
115
+ },
116
+ {
117
+ "description": "Uses asterisks (*) as primary character for lists.",
118
+ "type": "string",
119
+ "enum": [
120
+ "asterisks"
121
+ ]
122
+ }
123
+ ]
124
+ },
105
125
  "deno": {
106
126
  "description": "Top level configuration that sets the configuration to what is used in Deno.",
107
127
  "type": "boolean",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ben_12/eslint-plugin-dprint",
3
- "version": "0.11.2",
3
+ "version": "0.12.0",
4
4
  "description": "An ESLint plugin that fixes code with dprint",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -13,9 +13,9 @@
13
13
  "peerDependencies": {
14
14
  "@dprint/dockerfile": "^0.3.0",
15
15
  "@dprint/json": "^0.19.2",
16
- "@dprint/markdown": "^0.16.4",
16
+ "@dprint/markdown": "^0.17.0",
17
17
  "@dprint/toml": "^0.6.1",
18
- "@dprint/typescript": "^0.90.3",
18
+ "@dprint/typescript": "^0.90.4",
19
19
  "eslint": ">=7.0.0"
20
20
  },
21
21
  "peerDependenciesMeta": {