Skip to content

Commit

Permalink
v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarCruz committed Mar 8, 2021
1 parent 0cc0931 commit 341cc57
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

ESLint preset for QuITS apps

## \[0.4.2] - 2021-03-08

### Changed

- Update dependencies.
- Accept changes of minor version in `peerDependencies`

### Removed

- `@typescript-eslint/prefer-optional-chain` as optional-chain is expansive in es2018 and lower.

## \[0.4.1] - 2021-03-05

### Added
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@quitsmx/eslint-config",
"description": "Customized ESLint config for TypeScript + React or Preact + PrettierX",
"version": "0.4.1",
"version": "0.4.2",
"main": "index.js",
"author": "aMarCruz <amarcruzbox-git@yahoo.com>",
"license": "MIT",
Expand Down Expand Up @@ -44,8 +44,8 @@
"test": "eslint test && node test/deprecated"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"@typescript-eslint/eslint-plugin": "~4.17.0",
"@typescript-eslint/parser": "~4.17.0",
"confusing-browser-globals": "*",
"eslint-plugin-compat": "~3.9.0",
"eslint-plugin-jsx-a11y": "~6.4.1",
Expand All @@ -59,13 +59,13 @@
"eslint-plugin-unicorn": "~28.0.2"
},
"peerDependencies": {
"eslint": ">=7.18",
"typescript": "~4.0.0 || ~4.1.0"
"eslint": "^7.18.0",
"typescript": "^4.0.0"
},
"devDependencies": {
"@types/eslint": "~7.2.6",
"@types/node": "~14.14.31",
"@types/react": "~17.0.2",
"@types/eslint": "~7.2.7",
"@types/node": "~14.14.32",
"@types/react": "~17.0.3",
"eslint": "~7.21.0",
"preact": "~10.5.12",
"react": "~17.0.1",
Expand Down
1 change: 0 additions & 1 deletion preset/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,6 @@ module.exports = {
'@typescript-eslint/no-redeclare': ON,
'@typescript-eslint/no-require-imports': ON,
'@typescript-eslint/no-shadow': WARN,
'@typescript-eslint/prefer-optional-chain': WARN,
'unicorn/numeric-separators-style': [WARN, numericSeparatorsStyleOpts],
'unicorn/prefer-optional-catch-binding': ON,
},
Expand Down

0 comments on commit 341cc57

Please sign in to comment.