-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade docs build tools, typescript, and eslint (#243)
Co-authored-by: Ben Polinsky <[email protected]>
- Loading branch information
1 parent
8b4869e
commit 26561d1
Showing
39 changed files
with
1,562 additions
and
976 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@itwin-browser-authorization-8e0ba1ac-5753-47d3-97cf-b1a6c167b289.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "clean up redundant types", | ||
"packageName": "@itwin/browser-authorization", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@itwin-electron-authorization-1c5c066f-56de-42d6-9869-d4a9f992f852.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "clean up `this` usage", | ||
"packageName": "@itwin/electron-authorization", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@itwin-node-cli-authorization-090a33fa-fd86-4022-8791-3da0f66ff4d8.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "upgrade docs build tools, typescript, and eslint", | ||
"packageName": "@itwin/node-cli-authorization", | ||
"email": "[email protected]", | ||
"dependentChangeType": "none" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@itwin-oidc-signin-tool-12acd4c9-7499-4e66-a354-052f12243a59.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "upgrade docs build tools, typescript, and eslint", | ||
"packageName": "@itwin/oidc-signin-tool", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@itwin-service-authorization-2674b471-407a-412c-a9b8-c83280c3b468.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "ts assert syntax changes", | ||
"packageName": "@itwin/service-authorization", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const iTwinPlugin = require("@itwin/eslint-plugin"); | ||
|
||
module.exports = [ | ||
{ | ||
files: ["**/*.{ts,tsx}"], | ||
ignores: ["**/integration-tests/**"], | ||
...iTwinPlugin.configs.iTwinjsRecommendedConfig, | ||
}, | ||
{ | ||
files: ["**/*.{ts,tsx}"], | ||
ignores: ["**/integration-tests/**"], | ||
...iTwinPlugin.configs.jsdocConfig, | ||
}, | ||
{ | ||
files: ["**/*.{ts,tsx}"], | ||
ignores: ["**/integration-tests/**"], | ||
rules: { | ||
"no-duplicate-imports": "off", | ||
"@typescript-eslint/consistent-type-imports": "error", | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const iTwinPlugin = require("@itwin/eslint-plugin"); | ||
|
||
module.exports = [ | ||
{ | ||
files: ["**/*.{ts,tsx}"], | ||
...iTwinPlugin.configs.iTwinjsRecommendedConfig, | ||
}, | ||
{ | ||
files: ["**/*.{ts,tsx}"], | ||
...iTwinPlugin.configs.jsdocConfig, | ||
}, | ||
{ | ||
files: ["**/*.{ts,tsx}"], | ||
rules: { | ||
"no-duplicate-imports": "off", | ||
"@typescript-eslint/consistent-type-imports": "error", | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.