@lqbach/eslint-config 0.1.0 → 0.2.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/CHANGELOG.md +40 -0
- package/README.md +3 -0
- package/package.json +8 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.2.2](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.2.1...eslint-config-v0.2.2) (2023-11-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Documentation 📝
|
|
7
|
+
|
|
8
|
+
* add badges to eslint config readme ([afc422e](https://github.com/lqbach/eslint-prettier-config/commit/afc422eeeec6e7fe4b95b7f9c315b90a76a32ad5))
|
|
9
|
+
* add new readme docs ([b2b0044](https://github.com/lqbach/eslint-prettier-config/commit/b2b004442723e81299e10a2945e9f616324ac06a))
|
|
10
|
+
|
|
11
|
+
## [0.2.1](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.2.0...eslint-config-v0.2.1) (2023-11-14)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update package visiblity ([2c332e1](https://github.com/lqbach/eslint-prettier-config/commit/2c332e19165da93881d6ee61b75560041f9a5397))
|
|
17
|
+
|
|
18
|
+
## [0.2.0](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.1.0...eslint-config-v0.2.0) (2023-11-14)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* add new repository key to package ([d63ceb7](https://github.com/lqbach/eslint-prettier-config/commit/d63ceb7e9a348efc322ecdcb5d462cee6a2b05b8))
|
|
24
|
+
|
|
25
|
+
## 0.1.0 (2023-11-14)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* add release-please configuration ([6e7bd49](https://github.com/lqbach/eslint-prettier-config/commit/6e7bd492c16b998b28600204214732078f1c034f))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* update name in package descriptions ([103aeb8](https://github.com/lqbach/eslint-prettier-config/commit/103aeb876f9ef22177e66a6946f8a257dc7479cd))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Miscellaneous Chores
|
|
39
|
+
|
|
40
|
+
* release 0.1.0 ([7cb7162](https://github.com/lqbach/eslint-prettier-config/commit/7cb7162ec233343991bdcfeaadb1caff612c5c9f))
|
package/README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# @lqbach/eslint-config
|
|
2
|
+
|
|
3
|
+
  
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lqbach/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "0.2.2",
|
|
5
|
+
"description": "lqbach's Personal Eslint Config",
|
|
6
|
+
"private": false,
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/lqbach/eslint-prettier-config.git",
|
|
10
|
+
"directory": "packages/eslint-config"
|
|
11
|
+
},
|
|
6
12
|
"exports": {
|
|
7
13
|
"./index": "./dist/index.js"
|
|
8
14
|
},
|