Skip to content

Commit

Permalink
Merge pull request #1049 from standard/renovate/@typescript-eslint-pa…
Browse files Browse the repository at this point in the history
…ckages

chore(deps): update dependency @typescript-eslint/eslint-plugin to v5.50.0
  • Loading branch information
rostislav-simonik authored Feb 1, 2023
2 parents 6c0839d + f1d8be3 commit 7ffdd8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"@types/node": "18.11.18",
"@types/npm-package-arg": "6.1.1",
"@types/semver": "7.3.13",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/eslint-plugin": "5.50.0",
"ava": "5.1.1",
"editorconfig-checker": "5.0.1",
"eslint": "8.33.0",
Expand Down
2 changes: 2 additions & 0 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ test('export', (t): void => {
'dot-notation': 'off',
'func-call-spacing': 'off',
indent: 'off',
'key-spacing': 'off',
'keyword-spacing': 'off',
'lines-between-class-members': 'off',
'no-array-constructor': 'off',
Expand Down Expand Up @@ -195,6 +196,7 @@ test('export', (t): void => {
ignoredNodes: ['TemplateLiteral *', 'JSXElement', 'JSXElement > *', 'JSXAttribute', 'JSXIdentifier', 'JSXNamespacedName', 'JSXMemberExpression', 'JSXSpreadAttribute', 'JSXExpressionContainer', 'JSXOpeningElement', 'JSXClosingElement', 'JSXFragment', 'JSXOpeningFragment', 'JSXClosingFragment', 'JSXText', 'JSXEmptyExpression', 'JSXSpreadChild'],
offsetTernaryExpressions: true
}],
'@typescript-eslint/key-spacing': ['error', { beforeColon: false, afterColon: true }],
'@typescript-eslint/keyword-spacing': ['error', { before: true, after: true }],
'@typescript-eslint/lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'@typescript-eslint/member-delimiter-style': [
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const equivalents = [
'brace-style',
'func-call-spacing',
'indent',
'key-spacing',
'keyword-spacing',
'lines-between-class-members',
'no-array-constructor',
Expand Down

0 comments on commit 7ffdd8f

Please sign in to comment.