@mikey-pro/eslint-config 8.0.19 → 8.1.0
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/index.js +2 -4
- package/package.json +10 -10
package/index.js
CHANGED
|
@@ -27,7 +27,6 @@ import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
|
|
|
27
27
|
import { baseOverrides } from './overrides.js';
|
|
28
28
|
import { baseRules } from './rules.js';
|
|
29
29
|
|
|
30
|
-
/** @type {import('eslint').Linter.Config[]} */
|
|
31
30
|
const config = [
|
|
32
31
|
{
|
|
33
32
|
ignores: [
|
|
@@ -51,7 +50,7 @@ const config = [
|
|
|
51
50
|
eslintJs.configs.recommended,
|
|
52
51
|
eslintPluginPrettierRecommended,
|
|
53
52
|
{
|
|
54
|
-
files: ['**/*.js', '**/*.jsx', '**/*.mjs', '**/*.cjs'],
|
|
53
|
+
files: ['**/*.js', '**/*.jsx', '**/*.mjs', '**/*.cjs'],
|
|
55
54
|
languageOptions: {
|
|
56
55
|
ecmaVersion: 'latest',
|
|
57
56
|
sourceType: 'module',
|
|
@@ -178,5 +177,4 @@ const config = [
|
|
|
178
177
|
];
|
|
179
178
|
|
|
180
179
|
export default config;
|
|
181
|
-
export { baseRules }
|
|
182
|
-
export { baseOverrides } from './overrides.js';
|
|
180
|
+
export { baseRules, baseOverrides };
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikey-pro/eslint-config",
|
|
3
|
-
"version": "8.0
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "Mikey Pro ESLint configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@babel/core": "^7.26.
|
|
10
|
-
"@babel/eslint-parser": "^7.26.
|
|
9
|
+
"@babel/core": "^7.26.8",
|
|
10
|
+
"@babel/eslint-parser": "^7.26.8",
|
|
11
11
|
"@babel/eslint-plugin": "^7.25",
|
|
12
12
|
"@babel/preset-env": "^7.26",
|
|
13
13
|
"@cypress/eslint-plugin-json": "^3.2.3",
|
|
14
|
-
"@html-eslint/eslint-plugin": "^0.
|
|
15
|
-
"@html-eslint/parser": "^0.
|
|
16
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
17
|
-
"@typescript-eslint/parser": "^8.
|
|
14
|
+
"@html-eslint/eslint-plugin": "^0.34.0",
|
|
15
|
+
"@html-eslint/parser": "^0.34.0",
|
|
16
|
+
"@typescript-eslint/eslint-plugin": "^8.24.0",
|
|
17
|
+
"@typescript-eslint/parser": "^8.24.0",
|
|
18
18
|
"eslint-config-prettier": "^10.0.1",
|
|
19
19
|
"eslint-import-resolver-typescript": "^3.7.0",
|
|
20
20
|
"eslint-plugin-compat": "^6.0.2",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"eslint-plugin-markdownlint": "^0.6.0",
|
|
27
27
|
"eslint-plugin-n": "^17.15.1",
|
|
28
28
|
"eslint-plugin-only-warn": "^1.1.0",
|
|
29
|
-
"eslint-plugin-perfectionist": "^4.
|
|
30
|
-
"eslint-plugin-no-secrets": "^2.
|
|
29
|
+
"eslint-plugin-perfectionist": "^4.8.0",
|
|
30
|
+
"eslint-plugin-no-secrets": "^2.2.1",
|
|
31
31
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
32
32
|
"eslint-plugin-prettier": "^5.2.3",
|
|
33
33
|
"eslint-plugin-promise": "^7.2.1",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"eslint-plugin-testing-library": "^7.1.1",
|
|
40
40
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
41
41
|
"eslint-plugin-deprecation": "^3.0.0",
|
|
42
|
-
"postcss": "^8.5.
|
|
42
|
+
"postcss": "^8.5.2",
|
|
43
43
|
"postcss-scss": "^4.0.9",
|
|
44
44
|
"yaml-eslint-parser": "^1.2.3",
|
|
45
45
|
"eslint-plugin-sonarjs": "^3.0.1",
|