@yopem/eslint-config 0.2.3 → 0.3.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +12 -12
  3. package/src/base.js +4 -0
package/README.md CHANGED
@@ -19,4 +19,4 @@ deno install npm:@yopem/eslint-config
19
19
  ## Licence
20
20
 
21
21
  This project is licensed under the terms of the
22
- [MIT license](https://github.com/yopem/tooling/blob/main/LICENSE.md).
22
+ [MIT license](https://github.com/yopem/config/blob/main/LICENSE.md).
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@yopem/eslint-config",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "eslint",
7
7
  "eslint-config",
8
- "tooling"
8
+ "config"
9
9
  ],
10
10
  "type": "module",
11
11
  "main": "src/base.js",
@@ -46,11 +46,11 @@
46
46
  "license": "MIT",
47
47
  "repository": {
48
48
  "type": "git",
49
- "url": "https://github.com/yopem/tooling",
50
- "directory": "packages/tooling/eslint"
49
+ "url": "https://github.com/yopem/config",
50
+ "directory": "packages/config/eslint"
51
51
  },
52
52
  "bugs": {
53
- "url": "https://github.com/yopem/tooling/issues"
53
+ "url": "https://github.com/yopem/config/issues"
54
54
  },
55
55
  "scripts": {
56
56
  "lint": "eslint ./src",
@@ -59,21 +59,21 @@
59
59
  },
60
60
  "dependencies": {
61
61
  "@eslint/compat": "1.3.1",
62
- "@eslint/js": "9.30.1",
63
- "@next/eslint-plugin-next": "15.3.5",
62
+ "@eslint/js": "9.32.0",
63
+ "@next/eslint-plugin-next": "15.4.4",
64
64
  "@types/eslint": "9.6.1",
65
- "eslint": "9.30.1",
66
- "eslint-config-prettier": "10.1.5",
65
+ "eslint": "9.32.0",
66
+ "eslint-config-prettier": "10.1.8",
67
67
  "eslint-plugin-import": "2.32.0",
68
68
  "eslint-plugin-jsx-a11y": "6.10.2",
69
- "eslint-plugin-prettier": "5.5.1",
69
+ "eslint-plugin-prettier": "5.5.3",
70
70
  "eslint-plugin-react": "7.37.5",
71
71
  "eslint-plugin-react-hooks": "5.2.0",
72
- "typescript-eslint": "8.36.0"
72
+ "typescript-eslint": "8.38.0"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@yopem/typescript-config": "workspace:*",
76
- "eslint-plugin-turbo": "2.5.4",
76
+ "eslint-plugin-turbo": "2.5.5",
77
77
  "typescript": "5.8.3"
78
78
  },
79
79
  "peerDependencies": {
package/src/base.js CHANGED
@@ -13,9 +13,13 @@ import tseslint from "typescript-eslint"
13
13
  const __filename = fileURLToPath(import.meta.url)
14
14
  const __dirname = path.dirname(__filename)
15
15
  const gitignorePath = path.resolve(__dirname, ".gitignore")
16
+ const prettierignorePath = path.resolve(__dirname, ".prettierignore")
16
17
 
17
18
  export default tseslint.config(
18
19
  fs.existsSync(gitignorePath) ? includeIgnoreFile(gitignorePath) : {},
20
+ fs.existsSync(prettierignorePath)
21
+ ? includeIgnoreFile(prettierignorePath)
22
+ : {},
19
23
  { ignores: ["**/*.config.*"] },
20
24
 
21
25
  eslintConfigPrettier,