[TASK] Add editorconfig & format code (#94)

This commit is contained in:
Xaver Maierhofer 2017-11-06 00:59:42 +01:00 committed by Julian K
parent 918b279b23
commit 93321ab3ad
8 changed files with 184 additions and 130 deletions

17
.editorconfig Normal file
View File

@ -0,0 +1,17 @@
; http://editorconfig.org/
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
[*.go]
indent_style = tab
indent_size = 4
[*.{json,yml}]
indent_style = space
indent_size = 2

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
import json
import argparse
import json
import sys
@ -18,6 +18,7 @@ def main(states, nodeid):
with open(states, 'w') as handle:
json.dump(data, handle)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
@ -29,4 +30,3 @@ if __name__ == '__main__':
args = parser.parse_args()
main(args.states, args.nodeid)

View File

@ -8,7 +8,6 @@ import (
var multiCastGroup = net.ParseIP("ff02:0:0:0:0:0:2:1001")
const (
// default udp port used by announced
port = 1001

View File

@ -6,8 +6,12 @@
"mesh": {
"bat0": {
"interfaces": {
"wireless":["a"],
"other":["a2"]
"wireless": [
"a"
],
"other": [
"a2"
]
}
}
}
@ -17,13 +21,21 @@
"batadv": {
"a": {
"neighbours": {
"b":{"tq":150,"lastseen":0.42},
"c":{"tq":250,"lastseen":0.42}
"b": {
"tq": 150,
"lastseen": 0.42
},
"c": {
"tq": 250,
"lastseen": 0.42
}
}
}
},
"lldp": {
"a2": {"c2": {}}
"a2": {
"c2": {}
}
}
}

View File

@ -5,7 +5,9 @@
"mesh": {
"bat0": {
"interfaces": {
"wireless":["b"]
"wireless": [
"b"
]
}
}
}
@ -15,7 +17,10 @@
"batadv": {
"b": {
"neighbours": {
"a":{"tq":250,"lastseen":0.42}
"a": {
"tq": 250,
"lastseen": 0.42
}
}
}
}

View File

@ -5,8 +5,12 @@
"mesh": {
"bat0": {
"interfaces": {
"wireless":["c"],
"other":["c2"]
"wireless": [
"c"
],
"other": [
"c2"
]
}
}
}
@ -16,12 +20,17 @@
"batadv": {
"c": {
"neighbours": {
"a":{"tq":200,"lastseen":0.42}
"a": {
"tq": 200,
"lastseen": 0.42
}
}
}
},
"lldp": {
"c2": {"a2": {}}
"c2": {
"a2": {}
}
}
}

View File

@ -5,8 +5,13 @@
"mesh": {
"bat0": {
"interfaces": {
"wireless":["unneed","unneed2"],
"tunnel":["d"]
"wireless": [
"unneed",
"unneed2"
],
"tunnel": [
"d"
]
}
}
}
@ -16,7 +21,10 @@
"batadv": {
"d": {
"neighbours": {
"a":{"tq":200,"lastseen":0.42}
"a": {
"tq": 200,
"lastseen": 0.42
}
}
}
}

View File

@ -8,7 +8,9 @@
"mesh": {
"bat0": {
"interfaces": {
"wireless":["a"]
"wireless": [
"a"
]
}
}
}
@ -23,7 +25,9 @@
"mesh": {
"bat0": {
"interfaces": {
"wireless":["a"]
"wireless": [
"a"
]
}
}
}