@autoguru/eslint-plugin 1.2.0 → 1.3.2

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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @autoguru/eslint-plugin
2
2
 
3
+ ## 1.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ae9cd96: Removes next eslint
8
+
9
+ ## 1.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - ebee6d4: GDU: Adds CSP rules @autoguru/eslint-plugin: Adds nextjs defaults
14
+
15
+ ## 1.3.0
16
+
17
+ ### Minor Changes
18
+
19
+ - d80a10b: Unicorn eslint rules: Upgraded to v33
20
+
21
+ Prettier: Upgrades to v2.3
22
+
3
23
  ## 1.2.0
4
24
 
5
25
  ### Minor Changes
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line unicorn/prefer-module
1
2
  module.exports = {
2
3
  extends: ['plugin:import/errors'],
3
4
 
@@ -1,3 +1,4 @@
1
+ /* eslint-disable unicorn/prefer-module */
1
2
  module.exports = {
2
3
  parserOptions: {
3
4
  sourceType: 'module',
package/configs/jest.js CHANGED
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line unicorn/prefer-module
1
2
  module.exports = {
2
3
  extends: ['plugin:jest/recommended'],
3
4
 
package/configs/react.js CHANGED
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line unicorn/prefer-module
1
2
  module.exports = {
2
3
  extends: ['plugin:react/recommended'],
3
4
 
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line unicorn/prefer-module
1
2
  module.exports = {
2
3
  extends: [
3
4
  'plugin:@typescript-eslint/eslint-recommended',
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ /* eslint-disable unicorn/prefer-module */
1
2
  module.exports = {
2
3
  configs: {
3
4
  base: require('./configs/base'),
package/jest.config.js CHANGED
@@ -1,3 +1,4 @@
1
+ /* eslint-disable unicorn/prefer-module */
1
2
  module.exports = {
2
3
  displayName: require('./package.json').name,
3
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autoguru/eslint-plugin",
3
- "version": "1.2.0",
3
+ "version": "1.3.2",
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",
@@ -19,7 +19,7 @@
19
19
  "eslint-plugin-promise": "^5.1.0",
20
20
  "eslint-plugin-react": "^7.24.0",
21
21
  "eslint-plugin-react-hooks": "^4.2.0",
22
- "eslint-plugin-unicorn": "^28.0.2"
22
+ "eslint-plugin-unicorn": "^33.0.1"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "eslint": ">=7",