Skip to content

Commit

Permalink
⬆️ (deps) [email protected] 🧨 [b] (#1811)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 19, 2024
1 parent e7ab7b2 commit eb96b4e
Show file tree
Hide file tree
Showing 10 changed files with 339 additions and 408 deletions.
2 changes: 1 addition & 1 deletion config/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-perfectionist": "4.0.2",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
Expand Down
6 changes: 3 additions & 3 deletions config/eslint-config/src/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ const configBase = [
customGroups: {
type: {},
value: {
jeromefitz: '@jeromefitz/**',
'jeromefitz-type': '@jeromefitz/**',
jeromefitz: '^@jeromefitz/.*$',
'jeromefitz-type': '^@jeromefitz/.*$',
'server-only': 'server-only',
},
},
Expand All @@ -64,7 +64,7 @@ const configBase = [
'object',
'unknown',
],
internalPattern: ['@/**', '~**/**'],
internalPattern: ['^@/.*$', '^~.*/.*$'],
newlinesBetween: 'always',
order: 'asc',
type: 'natural',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"@semantic-release/[email protected]": "patches/@[email protected]"
},
"overrides": {
"@typescript-eslint/typescript-estree": "^8.3.0",
"@typescript-eslint/typescript-estree": "^8.15.0",
"micromatch": "4.0.8"
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/conventional-gitmoji/src/types/releaseRule.types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import type { ICommit } from './commit.types.js'

type IReleaseRule = Partial<Record<ICommit, IReleaseRuleProps>>

// @todo(NICE-129) eslint
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
type IReleaseRuleProps = {
Expand All @@ -15,6 +17,4 @@ type IReleaseRuleProps = {
type?: ICommit
value?: ICommit
}

type IReleaseRule = Partial<Record<ICommit, IReleaseRuleProps>>
export type { IReleaseRule, IReleaseRuleProps }
14 changes: 7 additions & 7 deletions packages/notion/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ import {
getQuery,
} from './queries/index.js'

// @todo(NICE-129) eslint
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
type ClientProps = {
custom: CustomProps
dataTypes: DataTypesProps
}

// @todo(NICE-129) eslint
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
type CredentialProps = {
Expand Down Expand Up @@ -43,13 +50,6 @@ type DataTypesProps = {
SLUG_BY_ROUTE: any
}

// @todo(NICE-129) eslint
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
type ClientProps = {
custom: CustomProps
dataTypes: DataTypesProps
}

class Client extends _Client {
#config?: any

Expand Down
Loading

0 comments on commit eb96b4e

Please sign in to comment.