@innovixx/eslint-config 2.0.1 → 2.0.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.
@@ -24,7 +24,7 @@ jobs:
24
24
  run: zip -r artifact.zip . -q
25
25
 
26
26
  - name: Upload artifact
27
- uses: actions/upload-artifact@v3
27
+ uses: actions/upload-artifact@v4
28
28
  with:
29
29
  name: artifact
30
30
  path: ./artifact.zip
@@ -37,7 +37,7 @@ jobs:
37
37
  packages: write
38
38
  contents: read
39
39
  steps:
40
- - uses: actions/download-artifact@v3
40
+ - uses: actions/download-artifact@v4
41
41
  with:
42
42
  name: artifact
43
43
  path: .
@@ -70,7 +70,7 @@ jobs:
70
70
  packages: write
71
71
  contents: read
72
72
  steps:
73
- - uses: actions/download-artifact@v3
73
+ - uses: actions/download-artifact@v4
74
74
  with:
75
75
  name: artifact
76
76
  path: .
@@ -1,9 +1,20 @@
1
1
  module.exports = {
2
+ languageOptions: {
3
+ ecmaVersion: 2020,
4
+ parser: '@typescript-eslint/parser',
5
+ parserOptions: {
6
+ ecmaFeatures: {
7
+ jsx: true,
8
+ },
9
+ },
10
+ sourceType: 'module',
11
+ },
2
12
  settings: {
3
13
  'import/resolver': {
4
14
  node: {
5
- extensions: ['.mjs', '.js', '.ts', '.ts', '.tsx', '.json'],
15
+ extensions: ['.mjs', '.js', '.jsx', '.ts', '.tsx', '.json'],
6
16
  },
17
+ typescript: {},
7
18
  },
8
19
  },
9
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@innovixx/eslint-config",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "main": "configs/index.js",
5
5
  "repository": "git@github.com:Innovixx-Development/eslint-config.git",
6
6
  "description": "Opinionated ESLint config for JavaScript developers",