Skip to content

Commit

Permalink
Merge pull request #28 from oat-sa/release-3.0.1
Browse files Browse the repository at this point in the history
Release 3.0.1
  • Loading branch information
yairkukielka committed May 6, 2024
2 parents 700ffef + 35a91b6 commit 9d342ec
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

- _3.0.1_

- Added `'plugin:jest/recommended'` to the node and svelte configs so the jest plugin is well configured.

- _3.0.0_

- Updated `eslint-plugin-jsdoc` 8 major versions. Note that in [version 44.0](https://github.com/gajus/eslint-plugin-jsdoc/releases/tag/v44.0.0) `settings.jsdoc.mode` default value became `typescript`. So opted into the old default (`jsdoc`) to prevent changes in behavior. See note here.
Expand Down
2 changes: 1 addition & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
mode: 'jsdoc'
}
},
extends: 'eslint:recommended',
extends: ['eslint:recommended', 'plugin:jest/recommended'],
rules: {
'array-bracket-newline': ['warn', 'consistent'],
'arrow-body-style': ['error', 'as-needed'],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oat-sa/eslint-config-tao",
"version": "3.0.0",
"version": "3.0.1",
"description": "Shareable `.eslintrc` configurations package for `oat-sa` projects.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion svelte.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
es2024: true,
'jest/globals': true
},
extends: ['eslint:recommended', 'plugin:svelte/recommended'],
extends: ['eslint:recommended', 'plugin:jest/recommended', 'plugin:svelte/recommended'],
plugins: ['es', 'jsdoc', 'jest'],
parser: '@babel/eslint-parser',
parserOptions: {
Expand Down

0 comments on commit 9d342ec

Please sign in to comment.