Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
hemengke1997 committed Aug 7, 2024
1 parent dce724d commit 29b7530
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions packages/eslint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @minko-fe/eslint-config

## 3.3.3
### Patch Changes

- disable strict rule

## 3.3.2
### Patch Changes

Expand Down
10 changes: 4 additions & 6 deletions packages/eslint/configs/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@ export const typescriptCore = tseslint.config({
{ disallowTypeAnnotations: false, fixStyle: 'inline-type-imports' },
],
'@typescript-eslint/explicit-function-return-type': 'off',

'@typescript-eslint/explicit-member-accessibility': 'off',

'@typescript-eslint/explicit-module-boundary-types': 'off',

'@typescript-eslint/method-signature-style': ['error', 'property'], // https://www.totaltypescript.com/method-shorthand-syntax-considered-harmful

'@typescript-eslint/naming-convention': [
Expand Down Expand Up @@ -56,6 +55,8 @@ export const typescriptCore = tseslint.config({
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-redeclare': 'error',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
// handled by unused-imports/no-unused-imports
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': 'off',
Expand Down Expand Up @@ -93,9 +94,6 @@ export const typescript: Linter.Config[] = [
},
{
files: [GLOB_JS, '**/*.cjs'],
rules: {
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-var-requires': 'off',
},
rules: {},
},
]
2 changes: 1 addition & 1 deletion packages/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minko-fe/eslint-config",
"version": "3.3.2",
"version": "3.3.3",
"description": "eslint-config",
"type": "module",
"repository": {
Expand Down

0 comments on commit 29b7530

Please sign in to comment.