We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538f3a8 commit 46463b3Copy full SHA for 46463b3
.prettierrc
@@ -0,0 +1,14 @@
1
+{
2
+ "tabWidth": 2,
3
+ "printWidth": 100,
4
+
5
+ "overrides": [
6
+ {
7
+ "files": "*.sol",
8
+ "options": {
9
+ "tabWidth": 4,
10
+ "printWidth": 120
11
+ }
12
13
+ ]
14
+}
shell.nix
@@ -0,0 +1,15 @@
+let
+ pkgs = import (builtins.fetchGit rec {
+ name = "dapptools-${rev}";
+ url = https://github.com/dapphub/dapptools;
+ rev = "5d2e0dd355893a2eaff11d5e08aa75fdbfba50b7";
+ }) {};
+in
+ pkgs.mkShell {
+ src = null;
+ name = "rari-capital-dappsys";
+ buildInputs = with pkgs; [
+ pkgs.dapp
+ ];
15
0 commit comments