-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
- Loading branch information
1 parent
c20ec09
commit bae6869
Showing
8 changed files
with
40 additions
and
28 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const eslint = require("@eslint/js"); | ||
const eslintConfigPrettier = require("eslint-config-prettier"); | ||
|
||
module.exports = [ | ||
eslint.configs.recommended, | ||
eslintConfigPrettier, | ||
{ | ||
files: ["**/*.js"], | ||
languageOptions: { | ||
sourceType: "commonjs", | ||
ecmaVersion: "latest", | ||
}, | ||
}, | ||
{ | ||
ignores: [ | ||
"node_modules/**", | ||
"lib/murky/**", | ||
"lib/solady/**", | ||
"lib/solmate/**", | ||
"lib/prb-test/**", | ||
"lib/forge-std/**", | ||
"lib/create-util/**", | ||
"lib/erc4626-tests/**", | ||
"lib/solidity-bytes-utils/**", | ||
"lib/openzeppelin-contracts/**", | ||
"cache/**", | ||
"out/**", | ||
"dist/**", | ||
], | ||
}, | ||
]; |
Submodule create-util
updated
8 files
+0 −6 | .eslintignore | |
+0 −15 | .eslintrc.js | |
+1 −1 | .github/workflows/checks.yml | |
+1 −1 | .github/workflows/test-contracts.yml | |
+37 −0 | eslint.config.js | |
+7 −7 | package.json | |
+202 −180 | pnpm-lock.yaml | |
+3 −1 | tsconfig.json |
Submodule openzeppelin-contracts
updated
19 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.