-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/upstream'
- Loading branch information
Showing
29 changed files
with
121 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Bug report | ||
about: Report a problem within technic | ||
title: '' | ||
labels: Bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
Technic has no main developer and largely depends on | ||
user-provided Pull Requests. It will take a while until | ||
even important issues are noticed. | ||
Please consider proposing a PR directly. | ||
_______________________________________________ | ||
|
||
|
||
**Bug description** | ||
|
||
|
||
**Steps to reproduce this issue** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
on: [push, pull_request] | ||
name: Check & Release | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: lint | ||
uses: Roang-zero1/factorio-mod-luacheck@master | ||
with: | ||
luacheckrc_url: https://raw.githubusercontent.com/minetest-mods/technic/master/.luacheckrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,48 @@ | ||
unused_args = false | ||
|
||
-- https://luacheck.readthedocs.io/en/stable/warnings.html | ||
ignore = { | ||
"611", --whitespace | ||
"631", -- line too long | ||
"211", -- unused local | ||
"311", -- Value assigned to a local variable is unused. | ||
"113", -- undefined | ||
"121" -- read only global | ||
} | ||
allow_defined_top = true | ||
max_line_length = 999 | ||
|
||
globals = { | ||
"technic", | ||
"technic_cnc", | ||
"wrench" | ||
"technic", "minetest", | ||
"srcstack", | ||
} | ||
|
||
read_globals = { | ||
-- Stdlib | ||
string = {fields = {"split"}}, | ||
table = {fields = {"copy", "getn"}}, | ||
|
||
-- Minetest | ||
"vector", "ItemStack", | ||
"dump", "VoxelArea", | ||
"minetest", "default", | ||
|
||
-- deps | ||
"mesecon", | ||
"pipeworks", | ||
"monitoring", | ||
"intllib", | ||
"stairsplus", | ||
"unifieddyes", | ||
"digilines", | ||
"digiline_remote" | ||
string = {fields = {"split", "trim"}}, | ||
table = {fields = {"copy", "getn"}}, | ||
|
||
"intllib", "VoxelArea", | ||
"default", "stairsplus", | ||
|
||
"PseudoRandom", "ItemStack", | ||
"mg", "tubelib", "vector", | ||
|
||
"moretrees", "bucket", | ||
"unified_inventory", "digilines", | ||
|
||
"pipeworks", "screwdriver", | ||
"VoxelManip", "unifieddyes", | ||
|
||
"Settings", "mesecon", | ||
"digiline_remote", | ||
|
||
"protector", "isprotect", | ||
"homedecor_expect_infinite_stacks", | ||
} | ||
|
||
files["concrete/init.lua"].ignore = { "steel_ingot" } | ||
files["technic/machines/MV/tool_workshop.lua"].ignore = { "pos" } | ||
files["technic/machines/other/frames.lua"].ignore = { "item_texture", "item_type", "adj", "connected", "" } | ||
files["technic/machines/register/battery_box.lua"].ignore = { "pos", "tube_upgrade" } | ||
files["technic/machines/register/cables.lua"].ignore = { "name", "from_below", "p" } | ||
files["technic/machines/register/common.lua"].ignore = { "result" } | ||
|
||
files["technic/machines/register/generator.lua"].ignore = { "node" } | ||
files["technic/machines/switching_station.lua"].ignore = { "pos1", "tier", "poshash" } | ||
files["technic/radiation.lua"].ignore = { "LAVA_VISC" } | ||
files["technic/tools/chainsaw.lua"].ignore = { "pos" } | ||
files["technic/tools/mining_drill.lua"].ignore = { "mode" } | ||
files["technic_chests/register.lua"].ignore = { "fs_helpers", "name", "locked_after_place" } | ||
|
||
files["technic_cnc/cnc.lua"].ignore = { "multiplier" } | ||
files["wrench/init.lua"].ignore = { "name", "stack" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.