Code style settings
marcin212 opened this issue ยท 4 comments
I think we need to export the code style.
https://www.jetbrains.com/help/idea/2017.1/copying-code-style-settings.html
I think we should use the same code style as forestry.
https://github.com/ForestryMC/ForestryMC/blob/mc-1.11/formatting-settings.jar
@Nedelosk Maybe change continuation indent
for tabs from 8 (2 tabs) to 4 (1 tab)?
For example before change:
RecipeManagers.carpenterManager.addRecipe(
100,
Binnie.LIQUID.getFluidStack(ManagerLiquid.WATER, 2000),
ItemStack.EMPTY,
new ItemStack(dictionaryBees),
"X#X", "YEY", "RDR",
'#', Blocks.GLASS_PANE,
'X', Items.GOLD_INGOT,
'Y', "ingotTin",
'R', Items.REDSTONE,
'D', Items.DIAMOND,
'E', Items.EMERALD
);
after change
RecipeManagers.carpenterManager.addRecipe(
100,
Binnie.LIQUID.getFluidStack(ManagerLiquid.WATER, 2000),
ItemStack.EMPTY,
new ItemStack(dictionaryBees),
"X#X", "YEY", "RDR",
'#', Blocks.GLASS_PANE,
'X', Items.GOLD_INGOT,
'Y', "ingotTin",
'R', Items.REDSTONE,
'D', Items.DIAMOND,
'E', Items.EMERALD
);
@KorDum I have changed it.