@brybrant/eslint-config 0.1.1 → 1.0.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/dist/eslint.config.js +3 -0
- package/package.json +5 -4
package/dist/eslint.config.js
CHANGED
|
@@ -13,8 +13,11 @@ const tseslintConfig = {
|
|
|
13
13
|
languageOptions: {
|
|
14
14
|
parser: tseslint.parser,
|
|
15
15
|
globals: globals.nodeBuiltin,
|
|
16
|
+
/** https://typescript-eslint.io/packages/parser */
|
|
16
17
|
parserOptions: {
|
|
18
|
+
/** Required for rules which need type information */
|
|
17
19
|
projectService: true,
|
|
20
|
+
/** Root directory for relative TSConfig paths */
|
|
18
21
|
tsconfigRootDir: import.meta.dirname
|
|
19
22
|
}
|
|
20
23
|
},
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@brybrant/eslint-config",
|
|
3
3
|
"author": "brybrant",
|
|
4
4
|
"license": "GPL-3.0-only",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "1.0.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"module": "./dist/eslint.config.js",
|
|
8
8
|
"types": "./dist/eslint.config.d.ts",
|
|
@@ -16,12 +16,13 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@brybrant/prettier-config": "^0.0.5",
|
|
19
|
-
"@
|
|
19
|
+
"@eslint/js": "9.x || 10.x",
|
|
20
|
+
"@types/node": "^22.19.18",
|
|
20
21
|
"eslint-config-prettier": "^10.1.8",
|
|
21
22
|
"eslint-plugin-jsdoc": "^62.8.1",
|
|
22
23
|
"eslint-plugin-prettier": "^5.5.5",
|
|
23
|
-
"globals": "^17.
|
|
24
|
-
"typescript-eslint": "^8.59.
|
|
24
|
+
"globals": "^17.6.0",
|
|
25
|
+
"typescript-eslint": "^8.59.3"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
28
|
"eslint": "9.x || 10.x"
|