Skip to content

Commit e11b563

Browse files
committed
Adjust configs
1 parent d68e1e8 commit e11b563

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.eslintrc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,11 @@
2323
"comma-dangle": ["error", "always-multiline"],
2424
"require-await": "error",
2525
"prettier/prettier": ["error", { "printWidth": 110 }]
26-
}
26+
},
27+
"overrides": [
28+
{
29+
"files": ["hardhat.config.js"],
30+
"globals": { "task": true }
31+
}
32+
]
2733
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
cache/
22
build/
3+
artifacts/
34
private/
45
node_modules/

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[default]
22
src = "contracts"
33
test = "test"
4-
out = "build/contracts"
4+
out = "artifacts/contracts"
55
libs = ["lib"]
66
solc_version = "0.8.13"

0 commit comments

Comments
 (0)