Skip to content

Commit 9f8bf42

Browse files
committed
Update .prettierrc
1 parent 2fb234b commit 9f8bf42

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.prettierrc

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
{
2-
"embeddedLanguageFormatting": "off",
3-
"printWidth": 80,
42
"tabWidth": 2,
3+
"printWidth": 80,
4+
"embeddedLanguageFormatting": "off",
55
"plugins": ["prettier-plugin-solidity"],
6-
"trailingComma": "none",
76
"overrides":
87
[
98
{ "files": "*.sol", "options": { "tabWidth": 4, "printWidth": 120 } },
10-
{
11-
"files": "*.json",
12-
"options": { "tabWidth": 2, "printWidth": 120, "trailingComma": "none" }
13-
}
9+
{ "files": ["*.json", ".prettierrc"], "options": { "tabWidth": 2, "printWidth": 120, "trailingComma": "none" } }
1410
]
1511
}

program-analysis/echidna/exercises/exercise7/example.hardhat.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ require("hardhat-dependency-compiler");
55
module.exports = {
66
networks: {
77
hardhat: {
8-
allowUnlimitedContractSize: true
8+
allowUnlimitedContractSize: true,
99
},
1010
localhost: {
11-
url: "http://127.0.0.1:8545"
12-
}
11+
url: "http://127.0.0.1:8545",
12+
},
1313
},
1414
solidity: {
1515
compilers: [
1616
{ version: "0.8.7" },
1717
{ version: "0.7.6" },
18-
{ version: "0.6.6" }
19-
]
20-
}
18+
{ version: "0.6.6" },
19+
],
20+
},
2121
/*
2222
dependencyCompiler: {
2323
paths: [

0 commit comments

Comments
 (0)