Skip to content

Commit 46463b3

Browse files
👷‍♂️ Dotfiles
1 parent 538f3a8 commit 46463b3

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.prettierrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
let
2+
pkgs = import (builtins.fetchGit rec {
3+
name = "dapptools-${rev}";
4+
url = https://github.com/dapphub/dapptools;
5+
rev = "5d2e0dd355893a2eaff11d5e08aa75fdbfba50b7";
6+
}) {};
7+
8+
in
9+
pkgs.mkShell {
10+
src = null;
11+
name = "rari-capital-dappsys";
12+
buildInputs = with pkgs; [
13+
pkgs.dapp
14+
];
15+
}

0 commit comments

Comments
 (0)