Skip to content

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed Oct 17, 2023
1 parent 6f8a10e commit ea5d8ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/language/validation/safe-ds-validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ import { placeholderShouldBeUsed, placeholdersMustNotBeAnAlias } from './other/d
import { segmentParameterShouldBeUsed, segmentResultMustBeAssignedExactlyOnce } from './other/declarations/segments.js';
import {
lambdaMustBeAssignedToTypedParameter,
lambdaParameterMustNotHaveConstModifier
lambdaParameterMustNotHaveConstModifier,
} from './other/expressions/lambdas.js';
import { indexedAccessesShouldBeUsedWithCaution } from './experimentalLanguageFeatures.js';
import { requiredParameterMustNotBeExpert } from './builtins/expert.js';
Expand Down Expand Up @@ -183,7 +183,7 @@ export const registerValidationChecks = function (services: SafeDsServices) {
SdsLambda: [
lambdaMustBeAssignedToTypedParameter(services),
lambdaParametersMustNotBeAnnotated,
lambdaParameterMustNotHaveConstModifier
lambdaParameterMustNotHaveConstModifier,
],
SdsMemberAccess: [
memberAccessMustBeNullSafeIfReceiverIsNullable(services),
Expand Down

0 comments on commit ea5d8ad

Please sign in to comment.