We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29e9d4c + d572c65 commit 17234daCopy full SHA for 17234da
.gitignore
@@ -11,3 +11,7 @@ machines/**
11
.coverage
12
.dmypy.json
13
*~
14
+
15
+.vscode
16
+.env
17
+.code
flake.nix
@@ -17,6 +17,10 @@
# The application
18
cosmo = prev.poetry2nix.mkPoetryApplication {
19
projectDir = ./.;
20
21
+ # This disables the build of mypy, which just takes too long.
22
+ check = false;
23
+ checkGroups = [];
24
};
25
})
26
];
0 commit comments