@@ -15,6 +15,7 @@ module.exports = Object.freeze({
1515 'no-empty-blocks' : 'warn' ,
1616 'no-global-import' : 'warn' ,
1717 'no-unused-import' : 'warn' ,
18+ 'no-unused-private-funcs' : 'warn' ,
1819 'no-unused-vars' : [
1920 'warn' ,
2021 {
@@ -67,11 +68,13 @@ module.exports = Object.freeze({
6768 'gas-struct-packing' : 'warn' ,
6869 'comprehensive-interface' : 'warn' ,
6970 'duplicated-imports' : 'warn' ,
71+ 'foundry-no-block-time-number' : [ 'warn' , [ 'test' , 'tests' ] ] ,
7072 'import-path-check' : [ 'warn' , [ '[~dependenciesPath]' ] ] ,
7173 quotes : [ 'error' , 'double' ] ,
7274 'const-name-snakecase' : 'warn' ,
7375 'contract-name-capwords' : 'warn' ,
7476 'event-name-capwords' : 'warn' ,
77+ 'foundry-test-function-naming' : [ 'warn' , [ 'setUp' ] ] ,
7578 'foundry-test-functions' : [ 'warn' , [ 'setUp' ] ] ,
7679 'func-name-mixedcase' : 'warn' ,
7780 'func-named-parameters' : [ 'warn' , 4 ] ,
@@ -117,6 +120,7 @@ module.exports = Object.freeze({
117120 ] ,
118121 'multiple-sends' : 'warn' ,
119122 'no-complex-fallback' : 'warn' ,
123+ 'no-immutable-before-declaration' : 'warn' ,
120124 'no-inline-assembly' : 'warn' ,
121125 'not-rely-on-block-hash' : 'warn' ,
122126 'not-rely-on-time' : 'warn' ,
0 commit comments