Permalink
Please sign in to comment.
Showing
with
26 additions
and 11 deletions.
- +11 −4 .gitignore
- +6 −0 .idea/inspectionProfiles/Project_Default.xml
- +4 −3 .pullapprove.yml
- +2 −2 build.sbt
- +2 −1 src/main/scala/wdltool/GraphPrint.scala
- +1 −1 src/main/scala/wdltool/Main.scala
15
.gitignore
| @@ -1,5 +1,12 @@ | ||
| -tags | ||
| -.idea/ | ||
| -target | ||
| -.artifactory | ||
| +# common scala config | ||
| *~ | ||
| +.DS_Store | ||
| +.artifactory | ||
| +.idea/* | ||
| +!/.idea/inspectionProfiles/ | ||
| +.idea/inspectionProfiles/* | ||
| +!/.idea/inspectionProfiles/Project_Default.xml | ||
| +target | ||
| + | ||
| +# custom config | ||
| +tags |
| @@ -0,0 +1,6 @@ | ||
| +<component name="InspectionProjectProfileManager"> | ||
| + <profile version="1.0"> | ||
| + <option name="myName" value="Project Default" /> | ||
| + <inspection_tool class="TypeAnnotation" enabled="false" level="WARNING" enabled_by_default="false" /> | ||
| + </profile> | ||
| +</component> |
0 comments on commit
b1d3f16