Skip to content

Commit

Permalink
delete float operator check (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucica28 authored May 29, 2023
1 parent da75445 commit 9a9d285
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 72 deletions.
67 changes: 0 additions & 67 deletions src/dscanner/analysis/fish.d

This file was deleted.

5 changes: 0 additions & 5 deletions src/dscanner/analysis/run.d
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import dscanner.analysis.style;
import dscanner.analysis.enumarrayliteral;
import dscanner.analysis.pokemon;
import dscanner.analysis.del;
import dscanner.analysis.fish;
import dscanner.analysis.numbers;
import dscanner.analysis.objectconst;
import dscanner.analysis.range;
Expand Down Expand Up @@ -481,10 +480,6 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a
checks ~= new DuplicateAttributeCheck(fileName, moduleScope,
analysisConfig.duplicate_attribute == Check.skipTests && !ut);

if (moduleName.shouldRun!FloatOperatorCheck(analysisConfig))
checks ~= new FloatOperatorCheck(fileName, moduleScope,
analysisConfig.float_operator_check == Check.skipTests && !ut);

if (moduleName.shouldRun!FunctionAttributeCheck(analysisConfig))
checks ~= new FunctionAttributeCheck(fileName, moduleScope,
analysisConfig.function_attribute_check == Check.skipTests && !ut);
Expand Down

0 comments on commit 9a9d285

Please sign in to comment.