Skip to content

Commit df3e7a9

Browse files
committed
chore: formatting and settings
1 parent 3c623ab commit df3e7a9

6 files changed

+10
-5
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"parser": "yaml-eslint-parser"
1717
}
1818
],
19-
"ignorePatterns": ["lib", "node_modules", "!**/*.json", "!**/*.yml"]
19+
"ignorePatterns": ["lib", "node_modules", "!**/*.json", "!**/*.yml", "lib/"]
2020
}

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ out/
33
.env
44

55
.DS_Store
6-
node_modules/
6+
node_modules/
7+
8+
lib/

.prettierrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"printWidth": 120,
1313
"tabWidth": 4,
1414
"singleQuote": false,
15-
"useTabs": false
15+
"useTabs": true
1616
}
1717
},
1818
{

.solhintignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
**/lib
2-
**/node_modules
2+
**/node_modules
3+
lib/

foundry.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ quote_style = "double"
1515
tab_width = 4
1616
wrap_comments = true
1717
single_line_statement_blocks = "preserve" # can force either way
18+
exclude = ['lib/']
1819

1920

2021
# See more config options https://github.com/foundry-rs/foundry/tree/master/config

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"format:verify": "concurrently --group --names fmt:els,fmt:sol --prefix name --prefix-colors magenta,blue \"prettier . --check\" \"forge fmt --check\"",
3030
"postinstall": "husky install",
3131
"scan:slither": "slither .",
32-
"reset": "rm -r cache node_modules out && npm install && forge clean && forge build"
32+
"reset": "rm -r cache node_modules out && forge clean && npm install && forge build",
33+
"test:pools": "forge test -vvv --match-path \"./test/pool/*\""
3334
},
3435
"author": "",
3536
"license": "MIT",

0 commit comments

Comments
 (0)