[TASK] Add editorconfig & format code (#94)
This commit is contained in:
parent
918b279b23
commit
93321ab3ad
17
.editorconfig
Normal file
17
.editorconfig
Normal 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
|
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
22
runtime/testdata/node1.json
vendored
22
runtime/testdata/node1.json
vendored
@ -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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
9
runtime/testdata/node2.json
vendored
9
runtime/testdata/node2.json
vendored
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
17
runtime/testdata/node3.json
vendored
17
runtime/testdata/node3.json
vendored
@ -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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
14
runtime/testdata/node4.json
vendored
14
runtime/testdata/node4.json
vendored
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
8
runtime/testdata/nodes.json
vendored
8
runtime/testdata/nodes.json
vendored
@ -8,7 +8,9 @@
|
||||
"mesh": {
|
||||
"bat0": {
|
||||
"interfaces": {
|
||||
"wireless":["a"]
|
||||
"wireless": [
|
||||
"a"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -23,7 +25,9 @@
|
||||
"mesh": {
|
||||
"bat0": {
|
||||
"interfaces": {
|
||||
"wireless":["a"]
|
||||
"wireless": [
|
||||
"a"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user