@smartive/eslint-config 3.1.1 → 3.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.
@@ -0,0 +1,12 @@
1
+ {
2
+ "branches": [
3
+ "main"
4
+ ],
5
+ "plugins": [
6
+ "@semantic-release/commit-analyzer",
7
+ "@semantic-release/release-notes-generator",
8
+ "@semantic-release/changelog",
9
+ "@semantic-release/npm",
10
+ "@semantic-release/github"
11
+ ]
12
+ }
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [3.1.1](https://github.com/smartive/eslint-config/compare/v3.1.0...v3.1.1) (2022-10-26)
1
+ # [3.3.0](https://github.com/smartive/eslint-config/compare/v3.2.0...v3.3.0) (2023-10-09)
2
2
 
3
3
 
4
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * allow windows style EOL (but consistent) ([9ab1632](https://github.com/smartive/eslint-config/commit/9ab16328412c4b566521a6ca84b89210cf4bba17))
6
+ * Add support for new major releases of @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier ([89d0c75](https://github.com/smartive/eslint-config/commit/89d0c7512fa611fd82ca6b59b4ee21bfc566d1c7))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartive/eslint-config",
3
- "version": "3.1.1",
3
+ "version": "3.3.0",
4
4
  "description": "ESLint configuration by smartive",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -19,25 +19,12 @@
19
19
  "url": "https://github.com/smartive/eslint-config/issues"
20
20
  },
21
21
  "homepage": "https://github.com/smartive/eslint-config#readme",
22
- "release": {
23
- "branches": [
24
- "main"
25
- ],
26
- "repositoryUrl": "https://github.com/smartive/eslint-config.git",
27
- "plugins": [
28
- "@semantic-release/commit-analyzer",
29
- "@semantic-release/release-notes-generator",
30
- "@semantic-release/changelog",
31
- "@semantic-release/npm",
32
- "@semantic-release/github"
33
- ]
34
- },
35
22
  "dependencies": {
36
- "@typescript-eslint/eslint-plugin": "^5.4.0",
37
- "@typescript-eslint/parser": "^5.4.0",
38
- "eslint-config-prettier": "^8.3.0",
23
+ "@typescript-eslint/eslint-plugin": "^5.4.0 || ^6.7.4",
24
+ "@typescript-eslint/parser": "^5.4.0 || ^6.7.4",
25
+ "eslint-config-prettier": "^8.3.0 || ^9.0.0",
39
26
  "eslint-plugin-import": "^2.25.3",
40
- "eslint-plugin-prettier": "^4.0.0",
27
+ "eslint-plugin-prettier": ">=4.0.0 <6",
41
28
  "eslint-plugin-react": "^7.27.0",
42
29
  "eslint-plugin-react-hooks": "^4.3.0"
43
30
  },
@@ -46,6 +33,6 @@
46
33
  },
47
34
  "devDependencies": {
48
35
  "@smartive/prettier-config": "^3.0.0",
49
- "prettier": "^2.5.1"
36
+ "prettier": ">=2.0.0 <4"
50
37
  }
51
38
  }