Skip to content

Commit

Permalink
Disable S139 on notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainpiot committed Nov 27, 2024
1 parent 519576f commit d2503f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class IPynbProfile implements BuiltInQualityProfilesDefinition {

static final String PROFILE_NAME = "Sonar way";
static final String PROFILE_LOCATION = RESOURCE_FOLDER + "/Sonar_way_profile.json";
static final Set<String> DISABLED_RULES = Set.of("S905", "S2201", "S5754", "S1481");
static final Set<String> DISABLED_RULES = Set.of("S139", "S905", "S2201", "S5754", "S1481");

@Override
public void define(Context context) {
Expand Down

0 comments on commit d2503f7

Please sign in to comment.