@ocavue/eslint-config 0.2.2 → 0.4.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/CHANGELOG.md +4 -44
- package/index.js +5 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,56 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
* The following workspace dependencies were updated
|
|
6
|
-
* dependencies
|
|
7
|
-
* @ocavue/eslint-config-prettier bumped from ^0.2.0 to ^0.2.1
|
|
8
|
-
|
|
9
|
-
### Dependencies
|
|
10
|
-
|
|
11
|
-
* The following workspace dependencies were updated
|
|
12
|
-
* dependencies
|
|
13
|
-
* @ocavue/eslint-config-basic bumped from ^0.2.0 to ^0.2.1
|
|
14
|
-
|
|
15
|
-
## [0.2.0](https://github.com/ocavue/dev-config/compare/eslint-config-v0.1.1...eslint-config-v0.2.0) (2022-11-23)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Features
|
|
19
|
-
|
|
20
|
-
* add @ocavue/eslint-config-prettier ([9ad16e3](https://github.com/ocavue/dev-config/commit/9ad16e30deb9490dc82be0622396f79e4499f10e))
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
### Dependencies
|
|
24
|
-
|
|
25
|
-
* The following workspace dependencies were updated
|
|
26
|
-
* dependencies
|
|
27
|
-
* @ocavue/eslint-config-basic bumped from ^0.1.1 to ^0.2.0
|
|
28
|
-
* @ocavue/eslint-config-prettier bumped from ^0.1.0 to ^0.2.0
|
|
29
|
-
|
|
30
|
-
## [0.1.1](https://github.com/ocavue/dev-config/compare/eslint-config-v0.1.0...eslint-config-v0.1.1) (2022-11-23)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
* bump version ([df397ea](https://github.com/ocavue/dev-config/commit/df397ea496257768a1325b80ee8fb5692218f0af))
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
### Dependencies
|
|
39
|
-
|
|
40
|
-
* The following workspace dependencies were updated
|
|
41
|
-
* dependencies
|
|
42
|
-
* @ocavue/eslint-config-basic bumped from ^0.1.0 to ^0.1.1
|
|
43
|
-
|
|
44
|
-
## 0.1.0 (2022-11-23)
|
|
3
|
+
## [0.4.0](https://github.com/ocavue/eslint-config/compare/eslint-config-v0.3.0...eslint-config-v0.4.0) (2022-11-23)
|
|
45
4
|
|
|
46
5
|
|
|
47
6
|
### Features
|
|
48
7
|
|
|
49
|
-
*
|
|
8
|
+
* release packages ([247817b](https://github.com/ocavue/eslint-config/commit/247817b1397b6291b5c800435a23748075d535f7))
|
|
50
9
|
|
|
51
10
|
|
|
52
11
|
### Dependencies
|
|
53
12
|
|
|
54
13
|
* The following workspace dependencies were updated
|
|
55
14
|
* dependencies
|
|
56
|
-
* @ocavue/eslint-config-basic bumped from ^0.
|
|
15
|
+
* @ocavue/eslint-config-basic bumped from ^0.2.1 to ^0.4.0
|
|
16
|
+
* @ocavue/eslint-config-prettier bumped from ^0.2.1 to ^0.4.0
|
package/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
|
|
3
|
-
const { defineConfig } = require(
|
|
4
|
-
const basic = require(
|
|
3
|
+
const { defineConfig } = require('eslint-define-config')
|
|
4
|
+
const basic = require('@ocavue/eslint-config-basic')
|
|
5
5
|
|
|
6
6
|
module.exports = defineConfig({
|
|
7
|
-
extends: [
|
|
7
|
+
extends: ['@ocavue/eslint-config-basic', '@ocavue/eslint-config-prettier'],
|
|
8
|
+
|
|
8
9
|
overrides: basic.overrides,
|
|
9
|
-
})
|
|
10
|
+
})
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocavue/eslint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@ocavue/eslint-config-basic": "^0.
|
|
7
|
-
"@ocavue/eslint-config-prettier": "^0.
|
|
6
|
+
"@ocavue/eslint-config-basic": "^0.4.0",
|
|
7
|
+
"@ocavue/eslint-config-prettier": "^0.4.0",
|
|
8
8
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
9
9
|
"@typescript-eslint/parser": "^5.44.0",
|
|
10
10
|
"eslint-config-prettier": "^8.5.0",
|