Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues 155, 173 #164

Merged
merged 20 commits into from
Aug 19, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Added a draft of an inspection which looks for rules not incl…
…uded/present in the current file."

This reverts commit 3a650a3.
Darya.Sharkova authored and Darya.Sharkova committed Aug 16, 2019
commit 04bbecf0d0389cf5eecb975ab8c1a57f16aef6b9

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -187,28 +187,6 @@
implementationClass="com.jetbrains.snakecharm.inspections.SmkLambdaRuleParamsInspection"
/>

<localInspection
language="Snakemake" shortName="SmkLambdaRuleParamsInspection"
enabledByDefault="true"
level="ERROR"
suppressId="SmkRuleOrCheckpointNameYetUndefinedInspection"
bundle="SnakemakeBundle"
groupKey="INSP.GROUP.snakemake"
key="INSP.NAME.only.specific.lambda.params"
implementationClass="com.jetbrains.snakecharm.inspections.SmkLambdaRuleParamsInspection"
/>

<localInspection
language="Snakemake" shortName="SmkUnavailableRuleReferenceInspection"
enabledByDefault="true"
level="ERROR"
suppressId="SmkUnavailableRuleReferenceInspection"
bundle="SnakemakeBundle"
groupKey="INSP.GROUP.snakemake"
key="INSP.NAME.rule.not.included"
implementationClass="com.jetbrains.snakecharm.inspections.SmkUnavailableRuleReferenceInspection"
/>

<psi.referenceContributor implementation="com.jetbrains.snakecharm.codeInsight.SnakemakeParamsInShellReferenceContributor"/>

<findUsagesHandlerFactory
3 changes: 0 additions & 3 deletions src/main/resources/SnakemakeBundle.properties
Original file line number Diff line number Diff line change
@@ -43,9 +43,6 @@ INSP.NAME.wildcards.first.parameter='wildcards' has to be the first lambda param
INSP.NAME.wildcards.first.parameter.preferable=Snakemake documentation suggests it's preferable to name the first parameter 'wildcards'.
INSP.NAME.non.wildcards.param.first.parameter=''{0}'' cannot be the first lambda parameter in ''{1}'' section.

# SmkUnavailableRuleReferenceInspection
INSP.NAME.rule.not.included=This rule is not included/present in this file.

### Annotators ###
ANN.keyword.argument.already.provided=Keyword argument already provided: {0}.
ANN.positional.argument.after.keyword.argument=Positional argument after keyword argument.

This file was deleted.