@rebeccastevens/eslint-config 1.3.20 → 1.3.23

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,6 +1,27 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file. Dates are displayed in UTC.
3
3
 
4
+ ## [1.3.23](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.22...v1.3.23) (2022-09-08)
5
+
6
+
7
+ ### Bug Fixes
8
+
9
+ * allow "index" in paths ([42d142f](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/42d142f4bea4393b3ec52362ba782e2504c8bcf9))
10
+
11
+ ## [1.3.22](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.21...v1.3.22) (2022-07-11)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * allow bundledDependency, optionalDependency and peerDependency imports ([7c20742](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7c20742b6b4ccd51df7c64eb2f749a05fd57681f))
17
+
18
+ ## [1.3.21](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.20...v1.3.21) (2022-05-29)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **import/no-extraneous-dependencies:** support cts and mts extension ([50daeb3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/50daeb381d64b9a40cb8a5ae6f80b690f10fca68))
24
+
4
25
  ## [1.3.20](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.19...v1.3.20) (2022-04-17)
5
26
 
6
27
 
package/dist/modern.cjs CHANGED
@@ -710,16 +710,16 @@ const settings$7 = {
710
710
  "import/no-extraneous-dependencies": [
711
711
  "error",
712
712
  {
713
- bundledDependencies: false,
713
+ bundledDependencies: true,
714
714
  devDependencies: [
715
- "*.{js,cjs,mjs,ts,jsx,tsx}",
715
+ "*.{js,cjs,mjs,ts,cts,mts,jsx,tsx}",
716
716
  "scripts/**",
717
717
  "spec/**",
718
718
  "test/**",
719
719
  "tests/**",
720
720
  "**/__mocks__/**",
721
721
  "**/__tests__/**",
722
- "**/*{.,_}{test,spec}.{js,cjs,mjs,ts,jsx,tsx}",
722
+ "**/*{.,_}{test,spec}.{js,cjs,mjs,ts,cts,mts,jsx,tsx}",
723
723
  "**/Gruntfile{,.{js,cjs,mjs,ts}}",
724
724
  "**/gulpfile.{js,cjs,mjs,ts}",
725
725
  "**/gulpfile.*.{js,cjs,mjs,ts}",
@@ -735,8 +735,8 @@ const settings$7 = {
735
735
  "**/webpack.config.{js,cjs,mjs,ts}",
736
736
  "**/webpack.config.*.{js,cjs,mjs,ts}",
737
737
  ],
738
- optionalDependencies: false,
739
- peerDependencies: false,
738
+ optionalDependencies: true,
739
+ peerDependencies: true,
740
740
  },
741
741
  ],
742
742
  "import/no-internal-modules": [
@@ -768,7 +768,7 @@ const settings$7 = {
768
768
  "error",
769
769
  {
770
770
  commonjs: true,
771
- noUselessIndex: true,
771
+ noUselessIndex: false,
772
772
  },
773
773
  ],
774
774
  "import/no-webpack-loader-syntax": "error",
package/dist/modern.mjs CHANGED
@@ -708,16 +708,16 @@ const settings$7 = {
708
708
  "import/no-extraneous-dependencies": [
709
709
  "error",
710
710
  {
711
- bundledDependencies: false,
711
+ bundledDependencies: true,
712
712
  devDependencies: [
713
- "*.{js,cjs,mjs,ts,jsx,tsx}",
713
+ "*.{js,cjs,mjs,ts,cts,mts,jsx,tsx}",
714
714
  "scripts/**",
715
715
  "spec/**",
716
716
  "test/**",
717
717
  "tests/**",
718
718
  "**/__mocks__/**",
719
719
  "**/__tests__/**",
720
- "**/*{.,_}{test,spec}.{js,cjs,mjs,ts,jsx,tsx}",
720
+ "**/*{.,_}{test,spec}.{js,cjs,mjs,ts,cts,mts,jsx,tsx}",
721
721
  "**/Gruntfile{,.{js,cjs,mjs,ts}}",
722
722
  "**/gulpfile.{js,cjs,mjs,ts}",
723
723
  "**/gulpfile.*.{js,cjs,mjs,ts}",
@@ -733,8 +733,8 @@ const settings$7 = {
733
733
  "**/webpack.config.{js,cjs,mjs,ts}",
734
734
  "**/webpack.config.*.{js,cjs,mjs,ts}",
735
735
  ],
736
- optionalDependencies: false,
737
- peerDependencies: false,
736
+ optionalDependencies: true,
737
+ peerDependencies: true,
738
738
  },
739
739
  ],
740
740
  "import/no-internal-modules": [
@@ -766,7 +766,7 @@ const settings$7 = {
766
766
  "error",
767
767
  {
768
768
  commonjs: true,
769
- noUselessIndex: true,
769
+ noUselessIndex: false,
770
770
  },
771
771
  ],
772
772
  "import/no-webpack-loader-syntax": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rebeccastevens/eslint-config",
3
- "version": "1.3.20",
3
+ "version": "1.3.23",
4
4
  "description": "My ESLint shareable config.",
5
5
  "keywords": [
6
6
  "eslint config"
@@ -63,9 +63,9 @@
63
63
  "deepmerge-ts": "^4.0.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@commitlint/cli": "^16.1.0",
67
- "@commitlint/config-conventional": "^16.0.0",
68
- "@rollup/plugin-commonjs": "^21.0.1",
66
+ "@commitlint/cli": "^17.0.2",
67
+ "@commitlint/config-conventional": "^17.0.2",
68
+ "@rollup/plugin-commonjs": "^22.0.0",
69
69
  "@rollup/plugin-node-resolve": "^13.1.3",
70
70
  "@rollup/plugin-typescript": "^8.3.0",
71
71
  "@semantic-release/changelog": "^6.0.1",
@@ -79,26 +79,26 @@
79
79
  "@typescript-eslint/eslint-plugin": "^5.10.2",
80
80
  "@typescript-eslint/parser": "^5.10.2",
81
81
  "commitizen": "^4.2.4",
82
- "cspell": "^5.18.3",
82
+ "cspell": "^6.1.0",
83
83
  "cz-conventional-changelog": "^3.3.0",
84
84
  "eslint": "^8.8.0",
85
85
  "eslint-config-prettier": "^8.3.0",
86
- "eslint-import-resolver-typescript": "^2.5.0",
86
+ "eslint-import-resolver-typescript": "^3.4.0",
87
87
  "eslint-plugin-eslint-comments": "^3.2.0",
88
88
  "eslint-plugin-functional": "^4.2.0",
89
89
  "eslint-plugin-import": "^2.25.4",
90
- "eslint-plugin-jsdoc": "^37.7.1",
91
- "eslint-plugin-markdown": "^2.2.1",
90
+ "eslint-plugin-jsdoc": "^39.2.9",
91
+ "eslint-plugin-markdown": "^3.0.0",
92
92
  "eslint-plugin-node": "^11.1.0",
93
93
  "eslint-plugin-optimize-regex": "^1.2.1",
94
94
  "eslint-plugin-prettier": "^4.0.0",
95
95
  "eslint-plugin-promise": "^6.0.0",
96
- "eslint-plugin-sonarjs": "^0.12.0",
96
+ "eslint-plugin-sonarjs": "^0.14.0",
97
97
  "eslint-plugin-tsdoc": "^0.2.14",
98
98
  "eslint-plugin-unicorn": "^41.0.0",
99
- "husky": "^7.0.4",
100
- "lint-staged": "^12.3.3",
101
- "markdownlint-cli": "^0.31.0",
99
+ "husky": "^8.0.1",
100
+ "lint-staged": "^13.0.3",
101
+ "markdownlint-cli": "^0.32.2",
102
102
  "nyc": "^15.1.0",
103
103
  "prettier": "^2.5.1",
104
104
  "rimraf": "^3.0.2",
@@ -106,7 +106,7 @@
106
106
  "rollup-plugin-auto-external": "^2.0.0",
107
107
  "semantic-release": "^19.0.2",
108
108
  "ts-node": "^10.4.0",
109
- "tsconfig-paths": "^3.12.0",
109
+ "tsconfig-paths": "^4.0.0",
110
110
  "tslib": "^2.3.1",
111
111
  "typescript": "^4.5.5"
112
112
  },