@metamask/eslint-config
Advanced tools
Comparing version 12.1.0 to 12.2.0
@@ -9,2 +9,11 @@ # Changelog | ||
## [12.2.0] | ||
### Changed | ||
- Remove deprecated rule `jsdoc/newline-after-description` ([#290](https://github.com/MetaMask/eslint-config/pull/290)) | ||
- This means the plugin can now be used with `eslint-plugin-jsdoc` versions `42` and above. | ||
### Fixed | ||
- Pin `eslint-plugin-import@~2.26.0` to avoid a regression in `eslint-plugin-import@2.27.0` ([#307](https://github.com/MetaMask/eslint-config/pull/307)) | ||
- Change `endOfLine` rules to better support linting on Windows ([#311](https://github.com/MetaMask/eslint-config/pull/311)) | ||
## [12.1.0] | ||
@@ -172,3 +181,4 @@ ### Changed | ||
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.1.0...HEAD | ||
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.2.0...HEAD | ||
[12.2.0]: https://github.com/MetaMask/eslint-config/compare/v12.1.0...v12.2.0 | ||
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/v12.0.0...v12.1.0 | ||
@@ -175,0 +185,0 @@ [12.0.0]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...v12.0.0 |
{ | ||
"name": "@metamask/eslint-config", | ||
"version": "12.1.0", | ||
"version": "12.2.0", | ||
"description": "Shareable MetaMask ESLint config.", | ||
@@ -26,5 +26,5 @@ "homepage": "https://github.com/MetaMask/eslint-config#readme", | ||
"@metamask/auto-changelog": "^3.0.0", | ||
"eslint": "^8.27.0", | ||
"eslint": "^8.45.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-import": "~2.26.0", | ||
"eslint-plugin-jsdoc": "^41.1.2", | ||
@@ -38,4 +38,4 @@ "eslint-plugin-prettier": "^4.2.1", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-jsdoc": "^39.6.2 || ^41", | ||
"eslint-plugin-import": "~2.26.0", | ||
"eslint-plugin-jsdoc": "^39.6.2 || ^41 || ^43.0.7", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
@@ -42,0 +42,0 @@ "eslint-plugin-promise": "^6.1.1", |
@@ -12,5 +12,5 @@ # `@metamask/eslint-config` | ||
@metamask/eslint-config@^12.0.0 \ | ||
eslint@^8.27.0 \ | ||
eslint@^8.45.0 \ | ||
eslint-config-prettier@^8.5.0 \ | ||
eslint-plugin-import@^2.27.5 \ | ||
eslint-plugin-import@~2.26.0 \ | ||
eslint-plugin-jsdoc@^41.1.2 \ | ||
@@ -17,0 +17,0 @@ eslint-plugin-prettier@^4.2.1 \ |
@@ -38,4 +38,5 @@ const environmentRules = require('./environment.json'); | ||
{ | ||
// All of these are defaults except singleQuote, but we specify them | ||
// All of these are defaults except singleQuote and endOfLine, but we specify them | ||
// for explicitness | ||
endOfLine: 'auto', | ||
quoteProps: 'as-needed', | ||
@@ -370,3 +371,2 @@ singleQuote: true, | ||
'jsdoc/multiline-blocks': 'error', | ||
'jsdoc/newline-after-description': 'error', | ||
'jsdoc/no-bad-blocks': 'error', | ||
@@ -373,0 +373,0 @@ 'jsdoc/no-defaults': 'error', |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
119372