Skip to content

Commit

Permalink
Fix formatting of the fabric.mod.json
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbot16 committed Jan 29, 2021
1 parent c18ef56 commit 83e2565
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 13 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
tab_width = 4

[*.gradle]
indent_style = tab

[*.java]
indent_style = tab

[*.json]
indent_style = space
indent_size = 2

[*.properties]
indent_style = space
indent_size = 2

[.editorconfig]
indent_style = space
indent_size = 4
26 changes: 13 additions & 13 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@
"name": "Iris",
"description": "A new shaders mod for Minecraft intended to be compatible with existing ShadersMod/Optifine shaders",
"authors": [
"coderbot"
"coderbot"
],
"contact": {
"homepage": "https://github.com/IrisShaders/Iris",
"sources": "https://github.com/IrisShaders/Iris.git",
"issues": "https://github.com/IrisShaders/Iris/issues"
"homepage": "https://github.com/IrisShaders/Iris",
"sources": "https://github.com/IrisShaders/Iris.git",
"issues": "https://github.com/IrisShaders/Iris/issues"
},

"license": "LGPL-3.0-only",
"icon": "assets/iris/iris-logo.png",

"environment": "client",
"entrypoints": {
"client": [
"net.coderbot.iris.Iris"
]
"client": [
"net.coderbot.iris.Iris"
]
},

"mixins": [
"mixins.iris.json"
"mixins.iris.json"
],

"depends": {
"fabricloader": ">=0.7.4",
"minecraft": "1.16.x",
"fabric-resource-loader-v0": ">=0.3.2",
"fabric-key-binding-api-v1": ">=1.0.1",
"fabric-lifecycle-events-v1": ">=1.2.0"
"fabricloader": ">=0.7.4",
"minecraft": "1.16.x",
"fabric-resource-loader-v0": ">=0.3.2",
"fabric-key-binding-api-v1": ">=1.0.1",
"fabric-lifecycle-events-v1": ">=1.2.0"
}
}

0 comments on commit 83e2565

Please sign in to comment.