eslint-config-aether 3.1.0 → 3.2.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.
Files changed (3) hide show
  1. package/README.md +1 -2
  2. package/dist/index.js +3 -1
  3. package/package.json +10 -17
package/README.md CHANGED
@@ -41,8 +41,7 @@ npm install eslint-config-aether
41
41
 
42
42
  ```js
43
43
  // Minimal config
44
- import aether from "eslint-config-aether";
45
- export default aether;
44
+ import { default } from "eslint-config-aether";
46
45
  ```
47
46
 
48
47
  ```js
package/dist/index.js CHANGED
@@ -100,7 +100,9 @@ var base_default = {
100
100
  "@stylistic/new-parens": "error",
101
101
  "@stylistic/no-extra-semi": "warn",
102
102
  "@stylistic/no-mixed-spaces-and-tabs": "warn",
103
- "@stylistic/no-multiple-empty-lines": "warn",
103
+ "@stylistic/no-multiple-empty-lines": ["warn", {
104
+ "max": 1
105
+ }],
104
106
  "@stylistic/no-multi-spaces": "warn",
105
107
  "@stylistic/no-trailing-spaces": "warn",
106
108
  "@stylistic/no-whitespace-before-property": "warn",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-aether",
3
- "version": "3.1.0",
3
+ "version": "3.2.1",
4
4
  "description": "A custom code style for ESLint.",
5
5
  "homepage": "https://github.com/vanruesc/eslint-config-aether",
6
6
  "main": "./dist/index.js",
@@ -36,25 +36,18 @@
36
36
  "files": [
37
37
  "dist"
38
38
  ],
39
- "pnpm": {
40
- "onlyBuiltDependencies": [
41
- "esbuild"
42
- ]
43
- },
44
39
  "scripts": {
45
- "prebuild": "npm run clean",
46
- "build": "run-p build:*",
47
- "build:js": "node esbuild",
48
- "build:dts": "tsc -p tsconfig.d.json",
40
+ "build": "node esbuild",
49
41
  "clean": "del-cli dist test/generated",
42
+ "dts": "tsc -p tsconfig.d.json",
50
43
  "copy": "copyfiles \"test/src/**\" test/generated -u 2",
51
- "predebug": "npm run build:js",
44
+ "predebug": "run-s clean dts build",
52
45
  "debug": "eslint --debug src",
53
46
  "fix": "eslint --fix test/generated",
54
47
  "report": "eslint src --format html --output-file eslintreport.html",
55
- "pretest": "run-s build copy fix",
48
+ "pretest": "run-s clean dts build copy fix",
56
49
  "test": "node --import tsx test/test.ts",
57
- "prepublishOnly": "npm test"
50
+ "prepublishOnly": "run-s test"
58
51
  },
59
52
  "peerDependencies": {
60
53
  "eslint": "10.x.x"
@@ -63,17 +56,17 @@
63
56
  "@eslint/core": "1.x.x",
64
57
  "@eslint/js": "10.x.x",
65
58
  "@stylistic/eslint-plugin": "5.x.x",
66
- "typescript-eslint": "8.x.x",
67
- "globals": "17.x.x"
59
+ "globals": "17.x.x",
60
+ "typescript-eslint": "8.x.x"
68
61
  },
69
62
  "devDependencies": {
70
- "@types/node": "25.x.x",
63
+ "@types/node": "26.x.x",
71
64
  "del-cli": "7.x.x",
72
65
  "esbuild": "0.28.x",
73
66
  "native-copyfiles": "2.x.x",
74
67
  "npm-run-all": "4.x.x",
75
68
  "tslib": "2.x.x",
76
69
  "tsx": "4.x.x",
77
- "typescript": "5.9.x"
70
+ "typescript": "6.0.x"
78
71
  }
79
72
  }