@capgo/cli 4.4.4 → 4.5.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.
@@ -1,5 +1,46 @@
1
1
  {
2
- "editor.formatOnSave": true,
2
+ // Enable the ESlint flat config support
3
+ "eslint.experimental.useFlatConfig": true,
4
+
5
+ // Disable the default formatter, use eslint instead
6
+ "prettier.enable": false,
7
+ "editor.formatOnSave": false,
3
8
  "javascript.format.enable": false,
4
- "nuxt.isNuxtApp": false
9
+
10
+ // Auto fix
11
+ "editor.codeActionsOnSave": {
12
+ "source.fixAll.eslint": "explicit",
13
+ "source.organizeImports": "never"
14
+ },
15
+
16
+ // Silent the stylistic rules in you IDE, but still auto fix them
17
+ "eslint.rules.customizations": [
18
+ { "rule": "style/*", "severity": "off" },
19
+ { "rule": "format/*", "severity": "off" },
20
+ { "rule": "*-indent", "severity": "off" },
21
+ { "rule": "*-spacing", "severity": "off" },
22
+ { "rule": "*-spaces", "severity": "off" },
23
+ { "rule": "*-order", "severity": "off" },
24
+ { "rule": "*-dangle", "severity": "off" },
25
+ { "rule": "*-newline", "severity": "off" },
26
+ { "rule": "*quotes", "severity": "off" },
27
+ { "rule": "*semi", "severity": "off" }
28
+ ],
29
+
30
+ // Enable eslint for all supported languages
31
+ "eslint.validate": [
32
+ "javascript",
33
+ "javascriptreact",
34
+ "typescript",
35
+ "typescriptreact",
36
+ "vue",
37
+ "html",
38
+ "markdown",
39
+ "json",
40
+ "jsonc",
41
+ "yaml",
42
+ "toml",
43
+ "gql",
44
+ "graphql"
45
+ ]
5
46
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [4.5.0](https://github.com/Cap-go/CLI/compare/v4.4.5...v4.5.0) (2024-05-02)
6
+
7
+
8
+ ### Features
9
+
10
+ * remove old code and cleanup eslint ([963a50d](https://github.com/Cap-go/CLI/commit/963a50dc23b7f8244cfaabfe437881817c9617b4))
11
+
12
+ ### [4.4.5](https://github.com/Cap-go/CLI/compare/v4.4.4...v4.4.5) (2024-04-25)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * better message recomendation for CLI ([23aad3e](https://github.com/Cap-go/CLI/commit/23aad3e081ed733259efa0ac66668bfbf653b65c))
18
+
5
19
  ### [4.4.4](https://github.com/Cap-go/CLI/compare/v4.4.3...v4.4.4) (2024-04-23)
6
20
 
7
21
 
package/bun.lockb CHANGED
Binary file