eslint-config-simplesense 2.3.4 → 2.3.7

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,4 +1,34 @@
1
1
  Changelog
2
+ ### [2.3.7](https://github.com/simplesenseio/eslint-config-simplesense/compare/2.3.6...2.3.7) (2022-04-20)
3
+
4
+
5
+ ### Builds
6
+
7
+ * **deps:** bump async from 2.6.3 to 2.6.4 ([4fcf1b8](https://github.com/simplesenseio/eslint-config-simplesense/commit/4fcf1b8d31243d7818b8b5738cb3d23d52700a79))
8
+ * **deps:** bump minimist from 1.2.5 to 1.2.6 ([06ed41f](https://github.com/simplesenseio/eslint-config-simplesense/commit/06ed41f0f71a610adc14032ed86e140f06a0a461))
9
+ * update npm dependencies ([006d7d2](https://github.com/simplesenseio/eslint-config-simplesense/commit/006d7d28e8e940f4d8ae9c0a8f3c86f46551bc72))
10
+
11
+ ### [2.3.6](https://github.com/simplesenseio/eslint-config-simplesense/compare/2.3.5...2.3.6) (2022-03-22)
12
+
13
+
14
+ ### Builds
15
+
16
+ * update npm dependencies ([05c42da](https://github.com/simplesenseio/eslint-config-simplesense/commit/05c42da27dcbf0d7a0939129a867c44781039454))
17
+
18
+ ### [2.3.5](https://github.com/simplesenseio/eslint-config-simplesense/compare/2.3.4...2.3.5) (2022-03-08)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * resolve extraneous dependencies in lambda layer and root ([d7d2df7](https://github.com/simplesenseio/eslint-config-simplesense/commit/d7d2df73a7f2cc346c1b92259bdc75d9d7526885))
24
+
25
+
26
+ ### Builds
27
+
28
+ * **deps:** bump prismjs from 1.26.0 to 1.27.0 ([4ef4eb2](https://github.com/simplesenseio/eslint-config-simplesense/commit/4ef4eb21667e3a69b18838654d3b6e778dcb7400))
29
+ * **deps:** bump url-parse from 1.5.7 to 1.5.10 ([72ae679](https://github.com/simplesenseio/eslint-config-simplesense/commit/72ae6790c8f2200e7c76c7d967143f0ae553b3d9))
30
+ * update npm dependencies ([6b9127a](https://github.com/simplesenseio/eslint-config-simplesense/commit/6b9127af6622f81adf6f6f26aba28c55965ead95))
31
+
2
32
  ### [2.3.4](https://github.com/simplesenseio/eslint-config-simplesense/compare/2.3.3...2.3.4) (2022-02-22)
3
33
 
4
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-simplesense",
3
- "version": "2.3.4",
3
+ "version": "2.3.7",
4
4
  "description": "ESLint Config for SimpleSense Styles",
5
5
  "keywords": [
6
6
  "eslint",
@@ -56,23 +56,23 @@
56
56
  "dependencies": {
57
57
  "eslint-plugin-array-func": "^3.1.7",
58
58
  "eslint-plugin-eslint-comments": "^3.2.0",
59
- "eslint-plugin-import": "^2.25.4",
59
+ "eslint-plugin-import": "^2.26.0",
60
60
  "eslint-plugin-no-use-extend-native": "^0.5.0",
61
61
  "eslint-plugin-node": "^11.1.0",
62
62
  "eslint-plugin-optimize-regex": "^1.2.1",
63
- "eslint-plugin-regexp": "^1.5.1",
64
- "eslint-plugin-security": "^1.4.0",
65
- "eslint-plugin-sonarjs": "^0.12.0",
66
- "eslint-plugin-unicorn": "^41.0.0",
67
- "eslint-plugin-vue": "^8.5.0",
63
+ "eslint-plugin-regexp": "^1.6.0",
64
+ "eslint-plugin-security": "^1.5.0",
65
+ "eslint-plugin-sonarjs": "^0.13.0",
66
+ "eslint-plugin-unicorn": "^42.0.0",
67
+ "eslint-plugin-vue": "^8.6.0",
68
68
  "eslint-plugin-yml": "^0.14.0"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@vuepress/plugin-pwa": "^1.9.7",
72
- "eslint": "^8.9.0",
72
+ "eslint": "^8.13.0",
73
73
  "hash-sum": "^2.0.0",
74
74
  "jest": "^27.5.1",
75
- "sort-package-json": "^1.54.0",
75
+ "sort-package-json": "^1.55.0",
76
76
  "vuepress": "^1.9.7",
77
77
  "vuepress-theme-default-prefers-color-scheme": "^2.0.0"
78
78
  },
package/plugins/import.js CHANGED
@@ -1,6 +1,10 @@
1
1
  (() => {
2
2
  'use strict';
3
3
 
4
+ // const path = require('path');
5
+
6
+ // const ROOT_DIR = path.resolve(__dirname, '../../../');
7
+
4
8
  module.exports = {
5
9
  'import/default': ['error'],
6
10
  'import/export': ['error'],
@@ -14,7 +18,8 @@
14
18
  'import/no-deprecated': ['error'],
15
19
  'import/no-duplicates': ['error'],
16
20
  'import/no-dynamic-require': ['error'],
17
- 'import/no-extraneous-dependencies': ['error'],
21
+ // There is an open merge that needs to happen before we can change this rule: https://github.com/import-js/eslint-plugin-import/pull/1954
22
+ 'import/no-extraneous-dependencies': 'error', // [ 'error', { packageDir: [ ROOT_DIR, `${ ROOT_DIR }/lambda/layers/node-modules/nodejs` ]}],
18
23
  'import/no-named-as-default-member': ['error'],
19
24
  'import/no-named-default': ['error'],
20
25
  'import/no-self-import': ['error'],