@pkmn/eslint-config 9.0.0 → 9.1.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 +4 -4
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
ESLint configuration used by [`@pkmn`][3] projects based off of [Pokémon Showdown's][0] and
|
|
7
7
|
[Google’s][2] style guidelines:
|
|
8
8
|
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
```ts
|
|
10
|
+
import pkmn from "@pkmn/eslint-config";
|
|
11
|
+
|
|
12
|
+
export default pkmn;
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
**NOTE:** [Due to how ESLint plugins work](https://github.com/eslint/eslint/issues/3458) you must
|
package/package.json
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pkmn/eslint-config",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "ESLint configuration from @pkmn based on Pokémon Showdown's style",
|
|
6
6
|
"repository": "github:pkmn/eslint-config",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"publishConfig": {
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
9
11
|
"main": "index.js",
|
|
10
|
-
"files": [
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js"
|
|
14
|
+
],
|
|
11
15
|
"peerDependencies": {
|
|
12
|
-
"@stylistic/eslint-plugin": ">=2.
|
|
13
|
-
"typescript-eslint": ">=8.
|
|
14
|
-
"eslint": ">=9.
|
|
16
|
+
"@stylistic/eslint-plugin": ">=2.10",
|
|
17
|
+
"typescript-eslint": ">=8.12",
|
|
18
|
+
"eslint": ">=9.14",
|
|
15
19
|
"eslint-plugin-import": ">=2.31",
|
|
16
20
|
"eslint-plugin-jest": ">=28.8",
|
|
17
21
|
"typescript": ">=5.6"
|