prettier-config-nick2bad4u 1.0.12 → 1.0.13
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/package.json +9 -9
- package/preset.mjs +1 -1
- package/prettier.config.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "prettier-config-nick2bad4u",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.13",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Shared Prettier config for Nick2bad4u projects.",
|
|
7
7
|
"keywords": [
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"prettier-plugin-merge": "^0.10.1",
|
|
93
93
|
"prettier-plugin-multiline-arrays": "^4.1.8",
|
|
94
94
|
"prettier-plugin-packagejson": "^3.0.2",
|
|
95
|
-
"prettier-plugin-powershell": "^2.1.
|
|
95
|
+
"prettier-plugin-powershell": "^2.1.4",
|
|
96
96
|
"prettier-plugin-properties": "^0.3.1",
|
|
97
97
|
"prettier-plugin-sh": "^0.18.1",
|
|
98
98
|
"prettier-plugin-sort-json": "^4.2.0",
|
|
@@ -102,23 +102,23 @@
|
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
104
104
|
"@codecov/bundle-analyzer": "^2.0.1",
|
|
105
|
-
"@types/node": "^25.
|
|
106
|
-
"@vitest/coverage-v8": "^4.1.
|
|
105
|
+
"@types/node": "^25.8.0",
|
|
106
|
+
"@vitest/coverage-v8": "^4.1.6",
|
|
107
107
|
"cross-env": "^10.1.0",
|
|
108
108
|
"eslint": "^10.3.0",
|
|
109
|
-
"eslint-config-nick2bad4u": "^1.0.
|
|
109
|
+
"eslint-config-nick2bad4u": "^1.0.16",
|
|
110
110
|
"git-cliff": "^2.13.1",
|
|
111
|
-
"npm-check-updates": "^22.
|
|
111
|
+
"npm-check-updates": "^22.2.0",
|
|
112
112
|
"npm-package-json-lint": "^10.4.0",
|
|
113
113
|
"picocolors": "^1.1.1",
|
|
114
114
|
"prettier": "^3.8.3",
|
|
115
|
-
"publint": "^0.3.
|
|
115
|
+
"publint": "^0.3.21",
|
|
116
116
|
"secretlint": "^13.0.0",
|
|
117
117
|
"secretlint-config-nick2bad4u": "^1.0.4",
|
|
118
118
|
"sort-package-json": "^3.6.1",
|
|
119
119
|
"typescript": "^6.0.3",
|
|
120
|
-
"vite": "^8.0.
|
|
121
|
-
"vitest": "^4.1.
|
|
120
|
+
"vite": "^8.0.13",
|
|
121
|
+
"vitest": "^4.1.6"
|
|
122
122
|
},
|
|
123
123
|
"peerDependencies": {
|
|
124
124
|
"prettier": "^3.0.0 || ^3.8.3"
|
package/preset.mjs
CHANGED
|
@@ -43,7 +43,7 @@ export const config = Object.freeze(sharedPrettierConfig);
|
|
|
43
43
|
* }>
|
|
44
44
|
* ) => import("prettier").Config}
|
|
45
45
|
*/
|
|
46
|
-
// eslint-disable-next-line @typescript-eslint/explicit-
|
|
46
|
+
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types -- JSDoc return typing is used for this JS module API.
|
|
47
47
|
export const createConfig = (options = {}) => createConfigInternal(options);
|
|
48
48
|
|
|
49
49
|
/** Default extensionless INI-like globs used by this shared configuration. */
|
package/prettier.config.mjs
CHANGED
|
@@ -249,7 +249,7 @@ export const iniOverrideOptions = Object.freeze({
|
|
|
249
249
|
* options?: Readonly<CreateConfigOptions>
|
|
250
250
|
* ) => import("prettier").Config}
|
|
251
251
|
*/
|
|
252
|
-
// eslint-disable-next-line @typescript-eslint/explicit-
|
|
252
|
+
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types -- JSDoc return typing is used for this JS module API.
|
|
253
253
|
export const createConfig = (options = {}) => {
|
|
254
254
|
const {
|
|
255
255
|
extensionlessIniFiles = [],
|