@useinsider/eslint-config 1.2.0-beta.1 → 1.2.1

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/README.md CHANGED
@@ -10,6 +10,8 @@
10
10
  - [Vanilla 🍦](#vanilla-)
11
11
  - [Framework-specific](#framework-specific)
12
12
  - [⏳ Upcoming Configurations](#-upcoming-configurations)
13
+ - [Vanilla 🍦](#vanilla--1)
14
+ - [Framework-specific](#framework-specific-1)
13
15
  - [Contributing](#contributing)
14
16
 
15
17
  ## Getting Started
@@ -67,14 +69,20 @@ frameworks. Here's a list of available configurations:
67
69
  | :---------- | :---------------------------------------------------- | :-------------------------------------------------------------------------- |
68
70
  | **Vue 3** | [`@useinsider/eslint-config/vue3`](./src/vue3#readme) | [`@useinsider/eslint-config/vue3-typescript`](./src/vue3-typescript#readme) |
69
71
 
72
+ ---
73
+
70
74
  ### ⏳ Upcoming Configurations
71
75
 
72
76
  Not available yet!
73
77
 
78
+ #### Vanilla 🍦
79
+
74
80
  | Environment | Browser (DOM) | Node |
75
81
  | :---------------- | :---------------------------------------------------------------- | :-------------------------------------------------------- |
76
82
  | **Legacy ES5 💀​** | [`@useinsider/eslint-config/legacy-dom`](./src/legacy-dom#readme) | [`@useinsider/eslint-config/legacy`](./src/legacy#readme) |
77
83
 
84
+ #### Framework-specific
85
+
78
86
  | Environment | JavaScript | TypeScript |
79
87
  | :---------- | :---------------------------------------------------- | :-------------------------------------------------------------------------- |
80
88
  | **Vue 2** | [`@useinsider/eslint-config/vue2`](./src/vue2#readme) | [`@useinsider/eslint-config/vue2-typescript`](./src/vue2-typescript#readme) |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@useinsider/eslint-config",
3
3
  "type": "module",
4
- "version": "1.2.0-beta.1",
4
+ "version": "1.2.1",
5
5
  "description": "A collection of ESLint configurations provided by @useinsider, offering support for various environments including Vanilla JS, TypeScript, and framework-specific setups such as Vue 3.",
6
6
  "keywords": [
7
7
  "useinsider",
@@ -15,6 +15,7 @@ module.exports = {
15
15
  require.resolve('../rules/stylistic.cjs'),
16
16
  require.resolve('../rules/jsdoc.cjs'),
17
17
  require.resolve('../rules/vue.cjs'),
18
+
18
19
  require.resolve('../rules/typescript.cjs'),
19
20
  ],
20
21
  plugins: ['@typescript-eslint'],