@dimensional-innovations/tool-config 1.2.3 → 1.3.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dimensional-innovations/tool-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Universal configuration package for ESLint, Prettier, Stylelint, and semantic-release with auto-detection for React, Vue, Svelte, Solid, Astro, Angular, and more",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Configures Prettier for Vue 3 Single File Components (.vue files)
|
|
5
5
|
*
|
|
6
|
-
* Requires: prettier-plugin-vue
|
|
6
|
+
* Requires: prettier-plugin-vue and @prettier/plugin-xml (dependencies)
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
export default {
|
|
10
10
|
// Use Vue plugin for .vue files
|
|
11
|
-
|
|
11
|
+
// XML plugin is required as a peer dependency of prettier-plugin-vue
|
|
12
|
+
plugins: ['prettier-plugin-vue', '@prettier/plugin-xml'],
|
|
12
13
|
|
|
13
14
|
// Don't indent <script> and <style> tags
|
|
14
15
|
// This keeps them aligned with <template> for consistency
|