Skip to content

Commit 36eb844

Browse files
committed
lint
1 parent 1b9f3fe commit 36eb844

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

src/tach.toml

+27-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
exclude = [
3-
".*__pycache__",
4-
".*egg-info",
2+
"**/*__pycache__",
3+
"**/*egg-info",
54
"docs",
65
"tests",
76
]
@@ -24,12 +23,12 @@ depends_on = []
2423
[[modules]]
2524
path = "sentry"
2625
depends_on = [
27-
{ path = "bitfield" },
28-
{ path = "django_picklefield" },
29-
{ path = "flagpole" },
30-
{ path = "sentry_plugins" },
31-
{ path = "social_auth" },
32-
{ path = "sudo" },
26+
"bitfield",
27+
"django_picklefield",
28+
"flagpole",
29+
"sentry_plugins",
30+
"social_auth",
31+
"sudo",
3332
]
3433

3534
[[modules]]
@@ -60,37 +59,48 @@ expose = [
6059
expose = [
6160
"django_picklefield",
6261
]
63-
from = ["django_picklefield"]
62+
from = [
63+
"django_picklefield",
64+
]
6465

6566
[[interfaces]]
6667
expose = [
6768
".*plugin.*",
6869
]
69-
from = ["sentry_plugins"]
70-
70+
from = [
71+
"sentry_plugins",
72+
]
7173

7274
[[interfaces]]
7375
expose = [
7476
".*Bit.*",
7577
".*bit.*",
7678
]
77-
from = ["bitfield"]
79+
from = [
80+
"bitfield",
81+
]
7882

7983
[[interfaces]]
8084
expose = [
8185
"backends.BaseAuth",
8286
]
83-
from = ["social_auth"]
87+
from = [
88+
"social_auth",
89+
]
8490

8591
[[interfaces]]
8692
expose = [
8793
"evaluation.*",
88-
"conditions.*"
94+
"conditions.*",
95+
]
96+
from = [
97+
"flagpole",
8998
]
90-
from = ["flagpole"]
9199

92100
[[interfaces]]
93101
expose = [
94102
".*",
95103
]
96-
from = ["sudo"]
104+
from = [
105+
"sudo",
106+
]

0 commit comments

Comments
 (0)