@mouse_484/eslint-config 0.0.0-dev

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/.eslintrc.yml ADDED
@@ -0,0 +1,6 @@
1
+ extends: '@mouse_484/eslint-config-base'
2
+ env:
3
+ es2022: true
4
+ rules:
5
+ no-var: error
6
+ prefer-const: error
package/CHANGELOG.md ADDED
@@ -0,0 +1,62 @@
1
+ # [@mouse_484/eslint-config-v1.5.4](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.5.3...@mouse_484/eslint-config-v1.5.4) (2023-08-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency eslint-plugin-import to ^2.28.1 ([a4b3447](https://github.com/mouse484/config/commit/a4b34473b4bac869b310e289917d838ee425f8d0))
7
+
8
+ # [@mouse_484/eslint-config-v1.5.3](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.5.2...@mouse_484/eslint-config-v1.5.3) (2023-07-28)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency eslint-plugin-import to ^2.28.0 ([0976ec9](https://github.com/mouse484/config/commit/0976ec9b40b1039aae425444ed8274811f7f24bb))
14
+
15
+ # [@mouse_484/eslint-config-v1.5.2](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.5.1...@mouse_484/eslint-config-v1.5.2) (2023-01-17)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **deps:** update dependency eslint-plugin-import to ^2.27.5 ([7605dc8](https://github.com/mouse484/config/commit/7605dc809698c3c148baa422c4ebd9f75b5ec9c7))
21
+
22
+ # [@mouse_484/eslint-config-v1.5.1](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.5.0...@mouse_484/eslint-config-v1.5.1) (2023-01-12)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **deps:** update dependency eslint-plugin-import to ^2.27.4 ([b097d9b](https://github.com/mouse484/config/commit/b097d9b3f2d325323f30ba783f408980d45e00b8))
28
+
29
+ # [@mouse_484/eslint-config-v1.5.0](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.4.0...@mouse_484/eslint-config-v1.5.0) (2023-01-08)
30
+
31
+
32
+ ### Features
33
+
34
+ * use pnpm ([#66](https://github.com/mouse484/config/issues/66)) ([6190da7](https://github.com/mouse484/config/commit/6190da707abc66308bcf1c1c3b97874857cc982f))
35
+
36
+ # [@mouse_484/eslint-config-v1.4.0](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.3.1...@mouse_484/eslint-config-v1.4.0) (2023-01-08)
37
+
38
+
39
+ ### Features
40
+
41
+ * use pnpm ([7176ebe](https://github.com/mouse484/config/commit/7176ebe72468a0d1f994924b15e29624b3418925))
42
+
43
+ # [@mouse_484/eslint-config-v1.3.1](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.3.0...@mouse_484/eslint-config-v1.3.1) (2023-01-08)
44
+
45
+
46
+ ### Reverts
47
+
48
+ * Revert "feat: use pnpm" ([207c58a](https://github.com/mouse484/config/commit/207c58ae991a5335e2752b815b681bdfd823412c))
49
+
50
+ # [@mouse_484/eslint-config-v1.3.0](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.2.0...@mouse_484/eslint-config-v1.3.0) (2023-01-08)
51
+
52
+
53
+ ### Features
54
+
55
+ * use pnpm ([29d6c70](https://github.com/mouse484/config/commit/29d6c70fc814f0f39065d5cee14c0ad92ac2b4d0))
56
+
57
+ # [@mouse_484/eslint-config-v1.2.0](https://github.com/mouse484/config/compare/@mouse_484/eslint-config-v1.1.0...@mouse_484/eslint-config-v1.2.0) (2023-01-04)
58
+
59
+
60
+ ### Features
61
+
62
+ * default eslint rule ([aadce40](https://github.com/mouse484/config/commit/aadce40f2b22ad8c1e3e2bf4786e7cb0e26bf69c))
package/index.js ADDED
@@ -0,0 +1,16 @@
1
+ /* eslint-disable no-undef */
2
+ /** @type {import('eslint/lib/shared/types').ConfigData} */
3
+ module.exports = {
4
+ extends: [
5
+ './.eslintrc.yml',
6
+ // '@mouse_484/eslint-config-typescript',
7
+ // '@mouse_484/eslint-config-import',
8
+ // 'plugin:import/typescript',
9
+ // '@mouse_484/eslint-config-prettier',
10
+ ],
11
+ // settings: { 'import/resolver': { typescript: true, node: true } },
12
+ env: {
13
+ // browser: true,w
14
+ // node: true,
15
+ },
16
+ };
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@mouse_484/eslint-config",
3
+ "version": "0.0.0-dev",
4
+ "main": "index.js",
5
+ "license": "MIT",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "devDependencies": {
10
+ "eslint": "^8.50.0"
11
+ },
12
+ "dependencies": {
13
+ "@mouse_484/eslint-config-base": "0.0.0-dev",
14
+ "@mouse_484/eslint-config-import": "0.0.0-dev",
15
+ "@mouse_484/eslint-config-prettier": "0.0.0-dev",
16
+ "@mouse_484/eslint-config-typescript": "0.0.0-dev",
17
+ "eslint-plugin-import": "^2.28.1"
18
+ }
19
+ }