@kirklin/eslint-config 1.1.0 → 1.1.1

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/cli.cjs CHANGED
@@ -46,7 +46,7 @@ var import_parse_gitignore = __toESM(require("parse-gitignore"), 1);
46
46
  var import_picocolors = __toESM(require("picocolors"), 1);
47
47
 
48
48
  // package.json
49
- var version = "1.1.0";
49
+ var version = "1.1.1";
50
50
  var devDependencies = {
51
51
  "@antfu/eslint-plugin-prettier": "^5.0.1-1",
52
52
  "@antfu/ni": "^0.21.12",
package/dist/cli.js CHANGED
@@ -17,7 +17,7 @@ import parse from "parse-gitignore";
17
17
  import c from "picocolors";
18
18
 
19
19
  // package.json
20
- var version = "1.1.0";
20
+ var version = "1.1.1";
21
21
  var devDependencies = {
22
22
  "@antfu/eslint-plugin-prettier": "^5.0.1-1",
23
23
  "@antfu/ni": "^0.21.12",
package/dist/index.cjs CHANGED
@@ -809,6 +809,7 @@ async function stylistic(options = {}) {
809
809
  "kirklin/if-newline": "error",
810
810
  "kirklin/top-level-function": "error",
811
811
  "style/brace-style": ["error", "1tbs", { allowSingleLine: false }],
812
+ "style/member-delimiter-style": ["error", { multiline: { delimiter: "semi" } }],
812
813
  ...overrides
813
814
  }
814
815
  }
package/dist/index.js CHANGED
@@ -716,6 +716,7 @@ async function stylistic(options = {}) {
716
716
  "kirklin/if-newline": "error",
717
717
  "kirklin/top-level-function": "error",
718
718
  "style/brace-style": ["error", "1tbs", { allowSingleLine: false }],
719
+ "style/member-delimiter-style": ["error", { multiline: { delimiter: "semi" } }],
719
720
  ...overrides
720
721
  }
721
722
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kirklin/eslint-config",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "packageManager": "pnpm@8.10.2",
6
6
  "description": "Kirk Lin's ESLint config",
7
7
  "author": "Kirk Lin (https://github.com/kirklin/)",
@@ -126,7 +126,7 @@
126
126
  "typescript": "^5.3.3",
127
127
  "vitest": "^1.1.0",
128
128
  "vue": "^3.3.13",
129
- "@kirklin/eslint-config": "1.1.0"
129
+ "@kirklin/eslint-config": "1.1.1"
130
130
  },
131
131
  "simple-git-hooks": {
132
132
  "pre-commit": "pnpm lint-staged"