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 11, 2023
1 parent e6d0a0a commit 52a5dee
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/language/validation/safe-ds-validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ import {
} from './other/declarations/annotationCalls.js';
import { memberAccessMustBeNullSafeIfReceiverIsNullable } from './other/expressions/memberAccesses.js';
import { importPackageMustExist, importPackageShouldNotBeEmpty } from './other/imports.js';
import {singleUseAnnotationsMustNotBeRepeated} from "./builtins/repeatable.js";
import { singleUseAnnotationsMustNotBeRepeated } from './builtins/repeatable.js';

/**
* Register custom validation checks.
Expand All @@ -99,9 +99,7 @@ export const registerValidationChecks = function (services: SafeDsServices) {
annotationCallAnnotationShouldNotBeExperimental(services),
annotationCallArgumentListShouldBeNeeded,
],
SdsAnnotatedObject: [
singleUseAnnotationsMustNotBeRepeated(services),
],
SdsAnnotatedObject: [singleUseAnnotationsMustNotBeRepeated(services)],
SdsArgument: [
argumentCorrespondingParameterShouldNotBeDeprecated(services),
argumentCorrespondingParameterShouldNotBeExperimental(services),
Expand Down

0 comments on commit 52a5dee

Please sign in to comment.