@frontify/eslint-config-basic 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/eslint.config.mjs +2 -1
  2. package/package.json +13 -12
package/eslint.config.mjs CHANGED
@@ -6,6 +6,7 @@ import eslint from '@eslint/js';
6
6
  // @ts-expect-error No types available
7
7
  import eslintPluginComments from '@eslint-community/eslint-plugin-eslint-comments/configs';
8
8
  import eslintPluginStylistic from '@stylistic/eslint-plugin';
9
+ import { defineConfig } from 'eslint/config';
9
10
  import eslintPluginImport from 'eslint-plugin-import';
10
11
  import eslintPluginJsonc from 'eslint-plugin-jsonc';
11
12
  // @ts-expect-error No types available
@@ -22,7 +23,7 @@ import eslintPluginYml from 'eslint-plugin-yml';
22
23
  import globals from 'globals';
23
24
  import tseslint from 'typescript-eslint';
24
25
 
25
- export default tseslint.config(
26
+ export default defineConfig(
26
27
  eslint.configs.recommended,
27
28
  tseslint.configs.recommendedTypeChecked,
28
29
  // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontify/eslint-config-basic",
3
3
  "type": "module",
4
- "version": "1.0.5",
4
+ "version": "1.0.6",
5
5
  "author": "Frontify Developers <developers@frontify.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -20,33 +20,34 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
23
- "@stylistic/eslint-plugin": "^5.2.3",
24
- "@typescript-eslint/eslint-plugin": "^8.41.0",
25
- "@typescript-eslint/parser": "^8.41.0",
23
+ "@stylistic/eslint-plugin": "^5.5.0",
24
+ "@typescript-eslint/eslint-plugin": "^8.46.2",
25
+ "@typescript-eslint/parser": "^8.46.2",
26
26
  "eslint-config-prettier": "^10.1.8",
27
27
  "eslint-import-resolver-typescript": "^4.4.4",
28
28
  "eslint-plugin-import": "^2.32.0",
29
- "eslint-plugin-jsonc": "^2.20.1",
29
+ "eslint-plugin-jsonc": "^2.21.0",
30
30
  "eslint-plugin-lodash": "^8.0.0",
31
31
  "eslint-plugin-markdown": "^5.1.0",
32
32
  "eslint-plugin-no-only-tests": "^3.3.0",
33
33
  "eslint-plugin-prettier": "^5.5.4",
34
34
  "eslint-plugin-promise": "^7.2.1",
35
- "eslint-plugin-unicorn": "^60.0.0",
36
- "eslint-plugin-yml": "^1.18.0",
37
- "globals": "^16.3.0",
38
- "typescript-eslint": "^8.41.0",
35
+ "eslint-plugin-unicorn": "^62.0.0",
36
+ "eslint-plugin-yml": "^1.19.0",
37
+ "globals": "^16.5.0",
38
+ "typescript-eslint": "^8.46.2",
39
39
  "yaml-eslint-parser": "^1.3.0"
40
40
  },
41
41
  "devDependencies": {
42
- "eslint": "^9.34.0",
42
+ "eslint": "^9.39.0",
43
43
  "prettier": "^3.6.2",
44
- "typescript": "^5.9.2"
44
+ "typescript": "^5.9.3"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
49
  "scripts": {
50
- "lint": "eslint ."
50
+ "lint": "eslint .",
51
+ "typecheck": "tsc --noEmit"
51
52
  }
52
53
  }