@ocavue/eslint-config 0.4.5 → 0.4.6
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 +15 -0
- package/README.md +20 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,21 @@
|
|
|
25
25
|
* dependencies
|
|
26
26
|
* @ocavue/eslint-config-basic bumped from ^0.6.2 to ^0.6.3
|
|
27
27
|
|
|
28
|
+
## [0.4.6](https://github.com/ocavue/eslint-config/compare/eslint-config-v0.4.5...eslint-config-v0.4.6) (2023-01-09)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* update dependencies ([b1c1738](https://github.com/ocavue/eslint-config/commit/b1c17382b337a31564b627776a44b6048efcfd6f))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Dependencies
|
|
37
|
+
|
|
38
|
+
* The following workspace dependencies were updated
|
|
39
|
+
* dependencies
|
|
40
|
+
* @ocavue/eslint-config-basic bumped from ^0.6.3 to ^0.6.4
|
|
41
|
+
* @ocavue/eslint-config-prettier bumped from ^0.4.1 to ^0.4.2
|
|
42
|
+
|
|
28
43
|
## [0.4.4](https://github.com/ocavue/eslint-config/compare/eslint-config-v0.4.3...eslint-config-v0.4.4) (2022-11-23)
|
|
29
44
|
|
|
30
45
|
|
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @ocavue/eslint-config
|
|
2
|
+
|
|
3
|
+
A set of ESLint rules for TypeScript projects.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
$ npm install -D eslint prettier @ocavue/eslint-config
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
In your ESLint configuration file
|
|
14
|
+
|
|
15
|
+
```JS
|
|
16
|
+
// .eslintrc.cjs
|
|
17
|
+
module.exports = {
|
|
18
|
+
extends: ['@ocavue/eslint-config'],
|
|
19
|
+
}
|
|
20
|
+
```
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocavue/eslint-config",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@ocavue/eslint-config-basic": "^0.6.
|
|
7
|
-
"@ocavue/eslint-config-prettier": "^0.4.
|
|
8
|
-
"eslint-define-config": "^1.
|
|
6
|
+
"@ocavue/eslint-config-basic": "^0.6.4",
|
|
7
|
+
"@ocavue/eslint-config-prettier": "^0.4.2",
|
|
8
|
+
"eslint-define-config": "^1.13.0"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
11
|
"eslint": ">=8.0.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"eslint": "^8.
|
|
15
|
-
"prettier": "^2.8.
|
|
16
|
-
"typescript": "~4.
|
|
14
|
+
"eslint": "^8.31.0",
|
|
15
|
+
"prettier": "^2.8.2",
|
|
16
|
+
"typescript": "~4.9.4"
|
|
17
17
|
},
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public"
|