Skip to content

Commit f15e18b

Browse files
Merge pull request #26 from adidas/feature/update-typescript-plugin
FIX @typescript-eslint/no-untyped-public-signature
2 parents b0cd539 + d646334 commit f15e18b

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ This changelog is only to log changes of the project base.
33
If there are changes on the packages, please, check and update the changelog of each package accordingly.
44
-->
55

6+
## 1.7.2
7+
8+
- Fixed a rule typo in `eslint-config-adidas-typescript`.
9+
610
## 1.7.1
711

812
- Updated `eslint-config-adidas-typescript` dependencies and rules.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-linter-configs",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "adidas configurations for JavaScript linting tools",
55
"license": "MIT",
66
"contributors": [

packages/eslint-config-adidas-typescript/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.1
2+
3+
- Fixed typo in `@typescript-eslint/no-untyped-public-signature`.
4+
15
# 1.3.0
26

37
- Updated `@typescript-eslint/parser` and `@typescript-eslint/eslint-plugin` to v2.9.0.

packages/eslint-config-adidas-typescript/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ module.exports = {
210210
'@typescript-eslint/no-type-alias': 'off',
211211
'@typescript-eslint/no-unnecessary-qualifier': 'error',
212212
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
213-
'@typecsript-eslint/no-untyped-public-signature': 'error',
213+
'@typescript-eslint/no-untyped-public-signature': 'error',
214214
'@typescript-eslint/no-unused-vars': [
215215
'error',
216216
{

packages/eslint-config-adidas-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-adidas-typescript",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "ESLint base configuration and rules for TypeScript codebases",
55
"license": "MIT",
66
"contributors": [

0 commit comments

Comments
 (0)