@yopem/eslint-config 0.1.10 → 0.1.12
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/package.json +2 -3
- package/src/base.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yopem/eslint-config",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@eslint/compat": "1.2.7",
|
|
62
62
|
"@eslint/js": "9.23.0",
|
|
63
|
-
"@next/eslint-plugin-next": "15.2.
|
|
63
|
+
"@next/eslint-plugin-next": "15.2.4",
|
|
64
64
|
"@types/eslint": "9.6.1",
|
|
65
65
|
"eslint": "9.23.0",
|
|
66
66
|
"eslint-config-prettier": "10.1.1",
|
|
@@ -69,7 +69,6 @@
|
|
|
69
69
|
"eslint-plugin-prettier": "5.2.5",
|
|
70
70
|
"eslint-plugin-react": "7.37.4",
|
|
71
71
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
72
|
-
"eslint-plugin-turbo": "2.4.4",
|
|
73
72
|
"typescript-eslint": "8.28.0"
|
|
74
73
|
},
|
|
75
74
|
"devDependencies": {
|
package/src/base.js
CHANGED
|
@@ -8,7 +8,6 @@ import eslint from "@eslint/js"
|
|
|
8
8
|
import eslintConfigPrettier from "eslint-config-prettier"
|
|
9
9
|
import importPlugin from "eslint-plugin-import"
|
|
10
10
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"
|
|
11
|
-
import turboPlugin from "eslint-plugin-turbo"
|
|
12
11
|
import tseslint from "typescript-eslint"
|
|
13
12
|
|
|
14
13
|
const __filename = fileURLToPath(import.meta.url)
|
|
@@ -25,7 +24,6 @@ export default tseslint.config(
|
|
|
25
24
|
files: ["**/*.js", "**/*.ts", "**/*.tsx"],
|
|
26
25
|
plugins: {
|
|
27
26
|
import: importPlugin,
|
|
28
|
-
turbo: turboPlugin,
|
|
29
27
|
},
|
|
30
28
|
extends: [
|
|
31
29
|
eslint.configs.recommended,
|
|
@@ -34,7 +32,6 @@ export default tseslint.config(
|
|
|
34
32
|
...tseslint.configs.stylisticTypeChecked,
|
|
35
33
|
],
|
|
36
34
|
rules: {
|
|
37
|
-
...turboPlugin.configs.recommended.rules,
|
|
38
35
|
"@typescript-eslint/no-unused-vars": [
|
|
39
36
|
"error",
|
|
40
37
|
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
|