@lntvow/eslint-config 9.18.4 → 9.18.6

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/dist/index.d.cts CHANGED
@@ -146,7 +146,7 @@ interface RuleOptions {
146
146
  */
147
147
  'default-case'?: Linter.RuleEntry<DefaultCase>
148
148
  /**
149
- * Enforce `default` clauses in switch statements to be last
149
+ * Enforce `default` clauses in `switch` statements to be last
150
150
  * @see https://eslint.org/docs/latest/rules/default-case-last
151
151
  */
152
152
  'default-case-last'?: Linter.RuleEntry<[]>
@@ -2080,7 +2080,7 @@ interface RuleOptions {
2080
2080
  */
2081
2081
  'semi-style'?: Linter.RuleEntry<SemiStyle>
2082
2082
  /**
2083
- * Enforce sorted import declarations within modules
2083
+ * Enforce sorted `import` declarations within modules
2084
2084
  * @see https://eslint.org/docs/latest/rules/sort-imports
2085
2085
  */
2086
2086
  'sort-imports'?: Linter.RuleEntry<SortImports>
package/dist/index.d.mts CHANGED
@@ -146,7 +146,7 @@ interface RuleOptions {
146
146
  */
147
147
  'default-case'?: Linter.RuleEntry<DefaultCase>
148
148
  /**
149
- * Enforce `default` clauses in switch statements to be last
149
+ * Enforce `default` clauses in `switch` statements to be last
150
150
  * @see https://eslint.org/docs/latest/rules/default-case-last
151
151
  */
152
152
  'default-case-last'?: Linter.RuleEntry<[]>
@@ -2080,7 +2080,7 @@ interface RuleOptions {
2080
2080
  */
2081
2081
  'semi-style'?: Linter.RuleEntry<SemiStyle>
2082
2082
  /**
2083
- * Enforce sorted import declarations within modules
2083
+ * Enforce sorted `import` declarations within modules
2084
2084
  * @see https://eslint.org/docs/latest/rules/sort-imports
2085
2085
  */
2086
2086
  'sort-imports'?: Linter.RuleEntry<SortImports>
package/dist/index.d.ts CHANGED
@@ -146,7 +146,7 @@ interface RuleOptions {
146
146
  */
147
147
  'default-case'?: Linter.RuleEntry<DefaultCase>
148
148
  /**
149
- * Enforce `default` clauses in switch statements to be last
149
+ * Enforce `default` clauses in `switch` statements to be last
150
150
  * @see https://eslint.org/docs/latest/rules/default-case-last
151
151
  */
152
152
  'default-case-last'?: Linter.RuleEntry<[]>
@@ -2080,7 +2080,7 @@ interface RuleOptions {
2080
2080
  */
2081
2081
  'semi-style'?: Linter.RuleEntry<SemiStyle>
2082
2082
  /**
2083
- * Enforce sorted import declarations within modules
2083
+ * Enforce sorted `import` declarations within modules
2084
2084
  * @see https://eslint.org/docs/latest/rules/sort-imports
2085
2085
  */
2086
2086
  'sort-imports'?: Linter.RuleEntry<SortImports>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-config",
3
- "version": "9.18.4",
3
+ "version": "9.18.6",
4
4
  "description": "eslint-config",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -30,12 +30,12 @@
30
30
  "prettier": ">=3.0.0"
31
31
  },
32
32
  "dependencies": {
33
- "@eslint/js": "^9.17.0",
33
+ "@eslint/js": "^9.19.0",
34
34
  "@lntvow/utils": "^3.2.2",
35
35
  "@stylistic/eslint-plugin": "^2.10.1",
36
36
  "@typescript-eslint/eslint-plugin": "^8.13.0",
37
37
  "@typescript-eslint/parser": "^8.13.0",
38
- "eslint": "^9.17.0",
38
+ "eslint": "^9.19.0",
39
39
  "eslint-config-prettier": "^9.1.0",
40
40
  "eslint-flat-config-utils": "^0.4.0",
41
41
  "eslint-import-resolver-alias": "^1.1.2",
@@ -50,14 +50,12 @@
50
50
  "parse-gitignore": "^2.0.0",
51
51
  "typescript": "^5.6.3",
52
52
  "vue-eslint-parser": "^9.4.3",
53
- "@lntvow/eslint-plugin": "^9.18.4"
53
+ "@lntvow/eslint-plugin": "^9.18.6"
54
54
  },
55
55
  "scripts": {
56
56
  "dev": "tsup --format esm",
57
57
  "build": "pnpm typegen && unbuild",
58
58
  "typegen": "esno scripts/typegen.ts",
59
- "rimraf": "rimraf ./node_modules/",
60
- "commit": "git add . && git-cz",
61
- "release": "git add . && bumpp package.json packages/*/package.json --all --commit --no-tag --push"
59
+ "rimraf": "rimraf ./node_modules/"
62
60
  }
63
61
  }