eslint-config-aether 3.1.0 → 3.2.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/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.0",
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",
@@ -63,17 +63,17 @@
63
63
  "@eslint/core": "1.x.x",
64
64
  "@eslint/js": "10.x.x",
65
65
  "@stylistic/eslint-plugin": "5.x.x",
66
- "typescript-eslint": "8.x.x",
67
- "globals": "17.x.x"
66
+ "globals": "17.x.x",
67
+ "typescript-eslint": "8.x.x"
68
68
  },
69
69
  "devDependencies": {
70
- "@types/node": "25.x.x",
70
+ "@types/node": "26.x.x",
71
71
  "del-cli": "7.x.x",
72
72
  "esbuild": "0.28.x",
73
73
  "native-copyfiles": "2.x.x",
74
74
  "npm-run-all": "4.x.x",
75
75
  "tslib": "2.x.x",
76
76
  "tsx": "4.x.x",
77
- "typescript": "5.9.x"
77
+ "typescript": "6.0.x"
78
78
  }
79
79
  }