diff --git a/packages/grafana-ui/src/components/DataSourceSettings/types.ts b/packages/grafana-ui/src/components/DataSourceSettings/types.ts index 8d8115a6c17..f298651b3e7 100644 --- a/packages/grafana-ui/src/components/DataSourceSettings/types.ts +++ b/packages/grafana-ui/src/components/DataSourceSettings/types.ts @@ -6,11 +6,11 @@ export interface AzureAuthSettings { azureSettingsUI?: React.ComponentType; } -export interface HttpSettingsBaseProps { +export interface HttpSettingsBaseProps { /** The configuration object of the data source */ - dataSourceConfig: DataSourceSettings; + dataSourceConfig: DataSourceSettings; /** Callback for handling changes to the configuration object */ - onChange: (config: DataSourceSettings) => void; + onChange: (config: DataSourceSettings) => void; /** Show the Forward OAuth identity option */ showForwardOAuthIdentityOption?: boolean; } diff --git a/scripts/ci-check-strict.sh b/scripts/ci-check-strict.sh index d1a92df923d..4203fefd658 100755 --- a/scripts/ci-check-strict.sh +++ b/scripts/ci-check-strict.sh @@ -3,7 +3,7 @@ set -e echo -e "Collecting code stats (typescript errors & more)" -ERROR_COUNT_LIMIT=17 +ERROR_COUNT_LIMIT=13 ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')" if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then