chore(release): 11.0.0 [skip ci]

# [11.0.0](https://github.com/scratchfoundation/eslint-config-scratch/compare/v10.0.14...v11.0.0) (2025-05-05)

### Bug Fixes

* be more careful about ext => rule mapping ([d010853](d01085335c))
* disable jsdoc/require-jsdoc ([7d7b277](7d7b277676))
* don't try to check types in JS ([329b4de](329b4de61c))
* fix linting for code blocks inside Markdown ([152673f](152673ff39))
* re-enable jsdoc checks ([40c86c9](40c86c94ca))

* refactor!: simplify and flatten configurations ([a7dda10](a7dda101f2))

### Features

* better type help, esp. with makeEslintConfig ([497bd28](497bd2880b))

### BREAKING CHANGES

* Configurations are now returned as objects, like most
shared ESLint configurations. The `make*Config` functions are no more.
Also, everything is now exported through one file.
This commit is contained in:
semantic-release-bot 2025-05-05 20:43:54 +00:00
parent 71edf06a48
commit 7fdd8b8b65
3 changed files with 29 additions and 3 deletions

View file

@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [11.0.0](https://github.com/scratchfoundation/eslint-config-scratch/compare/v10.0.14...v11.0.0) (2025-05-05)
### Bug Fixes
* be more careful about ext => rule mapping ([d010853](https://github.com/scratchfoundation/eslint-config-scratch/commit/d01085335cbe81df389a18e590120a3c5085ecfa))
* disable jsdoc/require-jsdoc ([7d7b277](https://github.com/scratchfoundation/eslint-config-scratch/commit/7d7b277676c772cafeb157b87d0f3205a81f7792))
* don't try to check types in JS ([329b4de](https://github.com/scratchfoundation/eslint-config-scratch/commit/329b4de61c81be7c2fddd965a08cb2b73017089a))
* fix linting for code blocks inside Markdown ([152673f](https://github.com/scratchfoundation/eslint-config-scratch/commit/152673ff3918a0f68e2401595c68f06c49eac711))
* re-enable jsdoc checks ([40c86c9](https://github.com/scratchfoundation/eslint-config-scratch/commit/40c86c94ca7d3dfa713d139fa28ef4b544b1b131))
* refactor!: simplify and flatten configurations ([a7dda10](https://github.com/scratchfoundation/eslint-config-scratch/commit/a7dda101f27c3099f024f1eb53533ee3cc97194f))
### Features
* better type help, esp. with makeEslintConfig ([497bd28](https://github.com/scratchfoundation/eslint-config-scratch/commit/497bd2880ba7640966e5f87fc3d4bd5b482eb303))
### BREAKING CHANGES
* Configurations are now returned as objects, like most
shared ESLint configurations. The `make*Config` functions are no more.
Also, everything is now exported through one file.
## [10.0.14](https://github.com/scratchfoundation/eslint-config-scratch/compare/v10.0.13...v10.0.14) (2025-05-03)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "eslint-config-scratch",
"version": "10.0.14",
"version": "11.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "eslint-config-scratch",
"version": "10.0.14",
"version": "11.0.0",
"license": "BSD-3-Clause",
"dependencies": {
"@babel/eslint-parser": "7.27.1",

View file

@ -1,6 +1,6 @@
{
"name": "eslint-config-scratch",
"version": "10.0.14",
"version": "11.0.0",
"description": "Shareable ESLint config for Scratch",
"main": "./lib/index.mjs",
"scripts": {