diff options
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | .idea/scopes/Mixins.xml | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index d773ef66d..c303fd98c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ -.idea/* +# Use **/*.* since if a directory is ignored, children of that directory *cannot* be unignored using ! again. +.idea/**/*.* !.idea/icon.svg !.idea/dictionaries/default_user.xml +!.idea/scopes/Mixins.xml .vscode/ run/ build/ diff --git a/.idea/scopes/Mixins.xml b/.idea/scopes/Mixins.xml new file mode 100644 index 000000000..39c346fed --- /dev/null +++ b/.idea/scopes/Mixins.xml @@ -0,0 +1,3 @@ +<component name="DependencyValidationManager"> + <scope name="Mixins" pattern="src:at.hannibal2.skyhanni.mixins.transformers..*" /> +</component>
\ No newline at end of file |
