mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-23 10:04:14 +01:00
Add more files to strict mode (#93)
This commit is contained in:
parent
574fdcaf37
commit
46cca859e3
@ -23,8 +23,5 @@ interface ErrorDisplayParams {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class ErrorDisplayViewModel {
|
class ErrorDisplayViewModel {
|
||||||
private params: ErrorDisplayParams;
|
public constructor(public params: ErrorDisplayParams) {}
|
||||||
public constructor(params: ErrorDisplayParams) {
|
|
||||||
this.params = params;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Utilities for validation */
|
/* Utilities for validation */
|
||||||
|
|
||||||
export const onValidateValueChange = (newValue: string, minValue?: number, maxValue?: number): number => {
|
export const onValidateValueChange = (newValue: string, minValue?: number, maxValue?: number): number | undefined => {
|
||||||
let numericValue = parseInt(newValue);
|
let numericValue = parseInt(newValue);
|
||||||
if (!isNaN(numericValue) && isFinite(numericValue)) {
|
if (!isNaN(numericValue) && isFinite(numericValue)) {
|
||||||
if (minValue !== undefined && numericValue < minValue) {
|
if (minValue !== undefined && numericValue < minValue) {
|
||||||
@ -16,7 +16,7 @@ export const onValidateValueChange = (newValue: string, minValue?: number, maxVa
|
|||||||
return undefined;
|
return undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const onIncrementValue = (newValue: string, step: number, max?: number): number => {
|
export const onIncrementValue = (newValue: string, step: number, max?: number): number | undefined => {
|
||||||
const numericValue = parseInt(newValue);
|
const numericValue = parseInt(newValue);
|
||||||
if (!isNaN(numericValue) && isFinite(numericValue)) {
|
if (!isNaN(numericValue) && isFinite(numericValue)) {
|
||||||
const newValue = numericValue + step;
|
const newValue = numericValue + step;
|
||||||
@ -25,7 +25,7 @@ export const onIncrementValue = (newValue: string, step: number, max?: number):
|
|||||||
return undefined;
|
return undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const onDecrementValue = (newValue: string, step: number, min?: number): number => {
|
export const onDecrementValue = (newValue: string, step: number, min?: number): number | undefined => {
|
||||||
const numericValue = parseInt(newValue);
|
const numericValue = parseInt(newValue);
|
||||||
if (!isNaN(numericValue) && isFinite(numericValue)) {
|
if (!isNaN(numericValue) && isFinite(numericValue)) {
|
||||||
const newValue = numericValue - step;
|
const newValue = numericValue - step;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
"./src/Common/HeadersUtility.ts",
|
"./src/Common/HeadersUtility.ts",
|
||||||
"./src/Common/Logger.ts",
|
"./src/Common/Logger.ts",
|
||||||
"./src/Common/MessageHandler.ts",
|
"./src/Common/MessageHandler.ts",
|
||||||
|
"./src/Common/MongoUtility.ts",
|
||||||
"./src/Common/ObjectCache.ts",
|
"./src/Common/ObjectCache.ts",
|
||||||
"./src/Common/ThemeUtility.ts",
|
"./src/Common/ThemeUtility.ts",
|
||||||
"./src/Common/UrlUtility.ts",
|
"./src/Common/UrlUtility.ts",
|
||||||
@ -28,8 +29,15 @@
|
|||||||
"./src/Contracts/Versions.ts",
|
"./src/Contracts/Versions.ts",
|
||||||
"./src/Controls/Heatmap/Heatmap.ts",
|
"./src/Controls/Heatmap/Heatmap.ts",
|
||||||
"./src/Controls/Heatmap/HeatmapDatatypes.ts",
|
"./src/Controls/Heatmap/HeatmapDatatypes.ts",
|
||||||
|
"./src/Definitions/globals.d.ts",
|
||||||
|
"./src/Definitions/html.d.ts",
|
||||||
|
"./src/Definitions/jquery-ui.d.ts",
|
||||||
|
"./src/Definitions/jquery.d.ts",
|
||||||
"./src/Definitions/plotly.js-cartesian-dist.d-min.ts",
|
"./src/Definitions/plotly.js-cartesian-dist.d-min.ts",
|
||||||
|
"./src/Definitions/svg.d.ts",
|
||||||
|
"./src/Explorer/Controls/ErrorDisplayComponent/ErrorDisplayComponent.ts",
|
||||||
"./src/Explorer/Controls/GitHub/GitHubStyleConstants.ts",
|
"./src/Explorer/Controls/GitHub/GitHubStyleConstants.ts",
|
||||||
|
"./src/Explorer/Controls/SmartUi/InputUtils.ts",
|
||||||
"./src/Explorer/Controls/Toolbar/IToolbarAction.ts",
|
"./src/Explorer/Controls/Toolbar/IToolbarAction.ts",
|
||||||
"./src/Explorer/Controls/Toolbar/IToolbarDisplayable.ts",
|
"./src/Explorer/Controls/Toolbar/IToolbarDisplayable.ts",
|
||||||
"./src/Explorer/Controls/Toolbar/IToolbarDropDown.ts",
|
"./src/Explorer/Controls/Toolbar/IToolbarDropDown.ts",
|
||||||
@ -38,34 +46,37 @@
|
|||||||
"./src/Explorer/Controls/Toolbar/IToolbarToggle.ts",
|
"./src/Explorer/Controls/Toolbar/IToolbarToggle.ts",
|
||||||
"./src/Explorer/Controls/Toolbar/KeyCodes.ts",
|
"./src/Explorer/Controls/Toolbar/KeyCodes.ts",
|
||||||
"./src/Explorer/Notebook/FileSystemUtil.ts",
|
"./src/Explorer/Notebook/FileSystemUtil.ts",
|
||||||
|
"./src/Explorer/Notebook/NTeractUtil.ts",
|
||||||
"./src/Explorer/Notebook/NotebookComponent/actions.ts",
|
"./src/Explorer/Notebook/NotebookComponent/actions.ts",
|
||||||
"./src/Explorer/Notebook/NotebookComponent/loadTransform.ts",
|
"./src/Explorer/Notebook/NotebookComponent/loadTransform.ts",
|
||||||
"./src/Explorer/Notebook/NotebookComponent/reducers.ts",
|
"./src/Explorer/Notebook/NotebookComponent/reducers.ts",
|
||||||
"./src/Explorer/Notebook/NotebookComponent/types.ts",
|
"./src/Explorer/Notebook/NotebookComponent/types.ts",
|
||||||
"./src/Explorer/Notebook/NotebookContentItem.ts",
|
"./src/Explorer/Notebook/NotebookContentItem.ts",
|
||||||
"./src/Explorer/Notebook/NotebookUtil.ts",
|
"./src/Explorer/Notebook/NotebookUtil.ts",
|
||||||
"./src/Explorer/Notebook/NTeractUtil.ts",
|
"./src/Explorer/Panes/PaneComponents.ts",
|
||||||
"./src/Explorer/Panes/Tables/Validators/EntityPropertyNameValidator.ts",
|
"./src/Explorer/Panes/Tables/Validators/EntityPropertyNameValidator.ts",
|
||||||
"./src/Explorer/Panes/Tables/Validators/EntityPropertyValidationCommon.ts",
|
"./src/Explorer/Panes/Tables/Validators/EntityPropertyValidationCommon.ts",
|
||||||
"./src/Explorer/Tables/Constants.ts",
|
"./src/Explorer/Tables/Constants.ts",
|
||||||
"./src/Explorer/Tables/QueryBuilder/DateTimeUtilities.ts",
|
"./src/Explorer/Tables/QueryBuilder/DateTimeUtilities.ts",
|
||||||
|
"./src/Explorer/Tabs/TabComponents.ts",
|
||||||
"./src/GitHub/GitHubConnector.ts",
|
"./src/GitHub/GitHubConnector.ts",
|
||||||
|
"./src/Index.ts",
|
||||||
"./src/NotebookWorkspaceManager/NotebookWorkspaceResourceProviderMockClients.ts",
|
"./src/NotebookWorkspaceManager/NotebookWorkspaceResourceProviderMockClients.ts",
|
||||||
"./src/PlatformType.ts",
|
"./src/PlatformType.ts",
|
||||||
"./src/quickstart.ts",
|
|
||||||
"./src/ReactDevTools.ts",
|
"./src/ReactDevTools.ts",
|
||||||
"./src/ResourceProvider/IResourceProviderClient.ts",
|
"./src/ResourceProvider/IResourceProviderClient.ts",
|
||||||
"./src/setupTests.ts",
|
|
||||||
"./src/Shared/appInsights.ts",
|
|
||||||
"./src/Shared/ExplorerSettings.ts",
|
"./src/Shared/ExplorerSettings.ts",
|
||||||
"./src/Shared/StorageUtility.ts",
|
"./src/Shared/StorageUtility.ts",
|
||||||
"./src/Shared/StringUtility.ts",
|
"./src/Shared/StringUtility.ts",
|
||||||
"./src/Shared/Telemetry/TelemetryConstants.ts",
|
"./src/Shared/Telemetry/TelemetryConstants.ts",
|
||||||
"./src/Shared/Telemetry/TelemetryProcessor.ts",
|
"./src/Shared/Telemetry/TelemetryProcessor.ts",
|
||||||
|
"./src/Shared/appInsights.ts",
|
||||||
"./src/Utils/GitHubUtils.ts",
|
"./src/Utils/GitHubUtils.ts",
|
||||||
"./src/Utils/MessageValidation.ts",
|
"./src/Utils/MessageValidation.ts",
|
||||||
"./src/Utils/OfferUtils.ts",
|
"./src/Utils/OfferUtils.ts",
|
||||||
"./src/Utils/StringUtils.ts",
|
"./src/Utils/StringUtils.ts",
|
||||||
|
"./src/quickstart.ts",
|
||||||
|
"./src/setupTests.ts",
|
||||||
"./src/workers/upload/definitions.ts"
|
"./src/workers/upload/definitions.ts"
|
||||||
],
|
],
|
||||||
"include": []
|
"include": []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user