@ocavue/eslint-config 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 ADDED
@@ -0,0 +1,56 @@
1
+ # Changelog
2
+
3
+ ### Dependencies
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)
45
+
46
+
47
+ ### Features
48
+
49
+ * add eslint configs ([a50bc27](https://github.com/ocavue/dev-config/commit/a50bc27c8bb18bc6f184909a5c744a290f1173a9))
50
+
51
+
52
+ ### Dependencies
53
+
54
+ * The following workspace dependencies were updated
55
+ * dependencies
56
+ * @ocavue/eslint-config-basic bumped from ^0.0.0 to ^0.1.0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 ocavue
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ // @ts-check
2
+
3
+ const { defineConfig } = require("eslint-define-config");
4
+ const basic = require("@ocavue/eslint-config-basic");
5
+
6
+ module.exports = defineConfig({
7
+ extends: ["@ocavue/eslint-config-basic", "@ocavue/eslint-config-prettier"],
8
+ overrides: basic.overrides,
9
+ });
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@ocavue/eslint-config",
3
+ "version": "0.2.2",
4
+ "main": "index.js",
5
+ "dependencies": {
6
+ "@ocavue/eslint-config-basic": "^0.2.1",
7
+ "@ocavue/eslint-config-prettier": "^0.2.1",
8
+ "@typescript-eslint/eslint-plugin": "^5.44.0",
9
+ "@typescript-eslint/parser": "^5.44.0",
10
+ "eslint-config-prettier": "^8.5.0",
11
+ "eslint-define-config": "^1.12.0",
12
+ "eslint-plugin-prettier": "^4.2.1"
13
+ },
14
+ "peerDependencies": {
15
+ "eslint": ">=8.0.0"
16
+ },
17
+ "devDependencies": {
18
+ "eslint": "^8.28.0",
19
+ "prettier": "^2.8.0",
20
+ "typescript": "~4.8.0"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }