@autoguru/eslint-plugin 1.1.5 → 1.3.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.
- package/CHANGELOG.md +20 -0
- package/configs/base/import.js +1 -0
- package/configs/base/index.js +1 -0
- package/configs/jest.js +1 -0
- package/configs/react.js +1 -0
- package/configs/typescript.js +2 -0
- package/index.js +1 -0
- package/jest.config.js +1 -0
- package/package.json +16 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @autoguru/eslint-plugin
|
|
2
2
|
|
|
3
|
+
## 1.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ebee6d4: GDU: Adds CSP rules @autoguru/eslint-plugin: Adds nextjs defaults
|
|
8
|
+
|
|
9
|
+
## 1.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- d80a10b: Unicorn eslint rules: Upgraded to v33
|
|
14
|
+
|
|
15
|
+
Prettier: Upgrades to v2.3
|
|
16
|
+
|
|
17
|
+
## 1.2.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- df57e1a: Upgrades eslint packages
|
|
22
|
+
|
|
3
23
|
## 1.1.5
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/configs/base/import.js
CHANGED
package/configs/base/index.js
CHANGED
package/configs/jest.js
CHANGED
package/configs/react.js
CHANGED
package/configs/typescript.js
CHANGED
package/index.js
CHANGED
package/jest.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autoguru/eslint-plugin",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "AutoGuru's shareable eslint config and custom plugins",
|
|
5
5
|
"homepage": "https://github.com/autoguru-au/octane/tree/master/packages/eslint-plugin#readme",
|
|
6
6
|
"repository": "https://github.com/autoguru-au/octane/tree/master/packages/eslint-plugin",
|
|
@@ -10,26 +10,29 @@
|
|
|
10
10
|
"build": "echo \"no op\""
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@typescript-eslint/eslint-plugin": "^4.
|
|
14
|
-
"@typescript-eslint/parser": "^4.
|
|
15
|
-
"eslint-config-prettier": "^8.
|
|
13
|
+
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
|
14
|
+
"@typescript-eslint/parser": "^4.26.0",
|
|
15
|
+
"eslint-config-prettier": "^8.3.0",
|
|
16
16
|
"eslint-import-resolver-typescript": "^2.4.0",
|
|
17
|
-
"eslint-plugin-import": "^2.
|
|
18
|
-
"eslint-plugin-
|
|
19
|
-
"eslint-plugin-
|
|
20
|
-
"eslint-plugin-
|
|
21
|
-
"eslint-plugin-react": "^7.21.5",
|
|
17
|
+
"eslint-plugin-import": "^2.23.4",
|
|
18
|
+
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
19
|
+
"eslint-plugin-promise": "^5.1.0",
|
|
20
|
+
"eslint-plugin-react": "^7.24.0",
|
|
22
21
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
23
|
-
"eslint-plugin-unicorn": "^
|
|
22
|
+
"eslint-plugin-unicorn": "^33.0.1"
|
|
24
23
|
},
|
|
25
24
|
"peerDependencies": {
|
|
26
|
-
"eslint": "
|
|
25
|
+
"@next/eslint-plugin-next": "^12.2.3",
|
|
26
|
+
"eslint": ">=7",
|
|
27
|
+
"eslint-plugin-jest": ">=24"
|
|
27
28
|
},
|
|
28
29
|
"publishConfig": {
|
|
29
30
|
"access": "public"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
|
-
"@
|
|
33
|
-
"eslint": "^7.
|
|
33
|
+
"@next/eslint-plugin-next": "^12.2.3",
|
|
34
|
+
"@types/eslint": "^7.2.13",
|
|
35
|
+
"eslint": "^7.28.0",
|
|
36
|
+
"eslint-plugin-jest": "^24.3.6"
|
|
34
37
|
}
|
|
35
38
|
}
|