@smartive/eslint-config 7.0.0 → 7.0.1

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/README.md +3 -3
  2. package/package.json +14 -12
package/README.md CHANGED
@@ -24,7 +24,7 @@ export default config('typescript');
24
24
  export default config('react');
25
25
 
26
26
  // .. or Next.js applications
27
- // make sure to add `eslint-config-next@16`
27
+ // make sure to add `eslint-config-next@16`
28
28
  // to your devDependencies
29
29
  export default config('nextjs');
30
30
  ```
@@ -35,7 +35,7 @@ To use eslint add the following to your package.json:
35
35
 
36
36
  ```json
37
37
  "scripts": {
38
- "lint": "eslint .",
39
- "lint:fix": "eslint . --fix"
38
+ "lint": "eslint {your source directory}",
39
+ "lint:fix": "eslint {your source directory} --fix"
40
40
  }
41
41
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartive/eslint-config",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "ESLint configuration by smartive",
5
5
  "files": [
6
6
  "README.md",
@@ -35,7 +35,7 @@
35
35
  "eslint-plugin-prettier": "^5.5.4",
36
36
  "eslint-plugin-react": "^7.37.5",
37
37
  "eslint-plugin-react-hooks": "^7.0.1",
38
- "globals": "^16.0.0",
38
+ "globals": "^17.0.0",
39
39
  "typescript-eslint": "^8.15.0"
40
40
  },
41
41
  "peerDependencies": {
@@ -52,22 +52,24 @@
52
52
  }
53
53
  },
54
54
  "devDependencies": {
55
- "@commitlint/cli": "^20.1.0",
56
- "@commitlint/config-conventional": "^20.0.0",
57
- "@eslint/js": "^9.15.0",
58
- "@smartive/prettier-config": "^3.0.0",
59
- "@types/node": "24.9.2",
60
- "cz-conventional-changelog": "^3.3.0",
61
- "eslint": "^9.22.0",
62
- "husky": "^9.1.7",
63
- "prettier": "^3.6.2",
64
- "typescript": "^5.9.3"
55
+ "@commitlint/cli": "20.4.1",
56
+ "@commitlint/config-conventional": "20.4.1",
57
+ "@eslint/js": "9.39.2",
58
+ "@smartive/prettier-config": "3.1.2",
59
+ "@types/node": "24.10.12",
60
+ "cz-conventional-changelog": "3.3.0",
61
+ "eslint": "9.39.2",
62
+ "husky": "9.1.7",
63
+ "prettier": "3.8.1",
64
+ "typescript": "5.9.3"
65
65
  },
66
66
  "engines": {
67
67
  "node": "^20.19.0 || >=22.12"
68
68
  },
69
69
  "scripts": {
70
70
  "tsc": "tsc",
71
+ "prettier": "prettier --check .",
72
+ "check-types": "tsc --noEmit",
71
73
  "build": "rm -rf dist && tsc",
72
74
  "commitlint": "commitlint --edit",
73
75
  "prepare": "[ ! -f node_modules/.bin/husky ] || husky"