@jenssimon/eslint-config-typescript
Advanced tools
Comparing version 3.2.2 to 3.3.0
12
index.js
@@ -48,3 +48,13 @@ module.exports = { | ||
'@typescript-eslint/func-call-spacing': ['error'], | ||
'@typescript-eslint/indent': ['error', 2], | ||
'@typescript-eslint/indent': [ | ||
'error', | ||
2, | ||
{ | ||
ignoredNodes: [ | ||
'FunctionExpression > .params[decorators.length > 0]', | ||
'FunctionExpression > .params > :matches(Decorator, :not(:first-child))', | ||
'ClassBody.body > PropertyDefinition[decorators.length > 0] > .key', | ||
], | ||
}, | ||
], | ||
'@typescript-eslint/naming-convention': [ | ||
@@ -51,0 +61,0 @@ 'error', |
{ | ||
"name": "@jenssimon/eslint-config-typescript", | ||
"version": "3.2.2", | ||
"version": "3.3.0", | ||
"description": "ESLint configuration for usage with TypeScript", | ||
@@ -26,4 +26,4 @@ "main": "index.js", | ||
"devDependencies": { | ||
"@jenssimon/eslint-config-base": "^5.0.2", | ||
"eslint": "^8.4.1", | ||
"@jenssimon/eslint-config-base": "^5.1.0", | ||
"eslint": "^8.5.0", | ||
"typescript": "^4.5.4" | ||
@@ -30,0 +30,0 @@ }, |
9701
142