@shufflies/eslint-config 1.0.1 → 1.0.2
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 +9 -2
- package/package.json +7 -8
- package/CHANGELOG.md +0 -13
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ It's my own personal set of reusable eslint configuration.
|
|
|
8
8
|
Install the package:
|
|
9
9
|
|
|
10
10
|
```shell
|
|
11
|
-
|
|
11
|
+
npm install -D @shufflies/eslint-config
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Reference it in an `eslint.config.mjs` or `eslint.config.ts`:
|
|
@@ -23,6 +23,13 @@ import { defineConfig } from "eslint/config";
|
|
|
23
23
|
export default defineConfig(
|
|
24
24
|
...recommended({
|
|
25
25
|
gitignorePaths: [fileURLToPath(new URL(".gitignore", import.meta.url))],
|
|
26
|
-
})
|
|
26
|
+
}),
|
|
27
|
+
|
|
28
|
+
// Other rule/config overrides
|
|
29
|
+
{
|
|
30
|
+
rules: {
|
|
31
|
+
"some/rule": "off"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
27
34
|
);
|
|
28
35
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shufflies/eslint-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"CHANGELOG.md",
|
|
15
14
|
"lib"
|
|
16
15
|
],
|
|
17
16
|
"scripts": {
|
|
18
|
-
"prepare": "husky
|
|
17
|
+
"prepare": "husky",
|
|
19
18
|
"clean": "rimraf lib",
|
|
20
|
-
"
|
|
21
|
-
"build:
|
|
22
|
-
"build:
|
|
19
|
+
"test": "eslint test --config test/eslint.config.mjs --report-unused-disable-directives",
|
|
20
|
+
"build:types": "tsc --declaration --emitDeclarationOnly --outDir lib/types -p src",
|
|
21
|
+
"build:cjs": "tsc --module commonjs --outDir lib/cjs -p src",
|
|
22
|
+
"build:esm": "tsc --module nodenext --outDir lib/esm -p src",
|
|
23
23
|
"build": "zx scripts/build.mjs"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"author": "Royston Shufflebotham",
|
|
30
30
|
"license": "MIT",
|
|
31
|
-
"packageManager": "
|
|
31
|
+
"packageManager": "npm@11.4.2",
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public",
|
|
34
34
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"@commitlint/cli": "^19.8.1",
|
|
45
45
|
"@commitlint/config-conventional": "^19.8.1",
|
|
46
46
|
"@semantic-release/changelog": "^6.0.3",
|
|
47
|
-
"@semantic-release/git": "^10.0.1",
|
|
48
47
|
"@semantic-release/github": "^11.0.3",
|
|
49
48
|
"@semantic-release/npm": "^12.0.1",
|
|
50
49
|
"@types/node": "^24.0.1",
|
package/CHANGELOG.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
## [1.0.1](https://github.com/RoystonS/shufflies-eslint-config/compare/v1.0.0...v1.0.1) (2025-06-14)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* build package before publishing ([f2bb21c](https://github.com/RoystonS/shufflies-eslint-config/commit/f2bb21c0803c7066066536521e57d206b5b6e52d))
|
|
7
|
-
|
|
8
|
-
# 1.0.0 (2025-06-14)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Bug Fixes
|
|
12
|
-
|
|
13
|
-
* perform release ([0b81384](https://github.com/RoystonS/shufflies-eslint-config/commit/0b81384545bca1f6844a620181714b39079c5ec1))
|