-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Fixed outdated headtracker config doc. #internal |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ jobs: | |
|
||
- uses: actions/cache/restore@v4 | ||
with: | ||
path: dist/linux_arm64 | ||
path: dist/linux_arm64_v8.0 | ||
key: chainlink-arm64-${{ github.sha }} | ||
fail-on-cache-miss: true | ||
|
||
|
@@ -86,7 +86,7 @@ jobs: | |
|
||
- runner: ubuntu-24.04-4cores-16GB-ARM | ||
goarch: arm64 | ||
dist_name: linux_arm64 | ||
dist_name: linux_arm64_v8.0 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,8 @@ jobs: | |
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | ||
id: files-changed | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
'@chainlink/contracts': patch | ||
--- | ||
|
||
#feature adds OZ AccessControl support to the registry module | ||
|
||
|
||
PR issue: CCIP-4105 | ||
|
||
Solidity Review issue: CCIP-3966 |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
'@chainlink/contracts': patch | ||
--- | ||
|
||
#internal merge ccip contracts | ||
#internal Enable Solhint for tests |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"extends": "solhint:recommended", | ||
"plugins": ["prettier", "chainlink-solidity"], | ||
"rules": { | ||
"compiler-version": ["off", "^0.8.0"], | ||
"const-name-snakecase": "off", | ||
"constructor-syntax": "error", | ||
"var-name-mixedcase": "off", | ||
"func-named-parameters": "off", | ||
"immutable-vars-naming": "off", | ||
"no-inline-assembly": "off", | ||
"contract-name-camelcase": "off", | ||
"one-contract-per-file": "off", | ||
"avoid-low-level-calls": "off", | ||
"reentrancy": "off", | ||
"func-name-mixedcase": "off", | ||
"no-unused-import": "error", | ||
"gas-struct-packing": "warn", | ||
"interface-starts-with-i": "warn", | ||
"func-visibility": [ | ||
"error", | ||
{ | ||
"ignoreConstructors": true | ||
} | ||
], | ||
"not-rely-on-time": "off", | ||
"prettier/prettier": [ | ||
"off", | ||
{ | ||
"endOfLine": "auto" | ||
} | ||
], | ||
"no-empty-blocks": "off", | ||
"quotes": ["error", "double"], | ||
"reason-string": [ | ||
"warn", | ||
{ | ||
"maxLength": 64 | ||
} | ||
], | ||
"chainlink-solidity/prefix-internal-functions-with-underscore": "warn", | ||
"chainlink-solidity/prefix-private-functions-with-underscore": "warn", | ||
"chainlink-solidity/prefix-storage-variables-with-s-underscore": "warn", | ||
"chainlink-solidity/prefix-immutable-variables-with-i": "warn", | ||
"chainlink-solidity/all-caps-constant-storage-variables": "warn", | ||
"chainlink-solidity/no-hardhat-imports": "warn", | ||
"chainlink-solidity/inherited-constructor-args-not-in-contract-definition": "warn", | ||
"chainlink-solidity/explicit-returns": "warn" | ||
} | ||
} |