Skip to content

Commit

Permalink
workflow: Fix editorconfig scanned errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hjpotter92 committed Feb 2, 2024
1 parent 3678707 commit e247dbd
Show file tree
Hide file tree
Showing 15 changed files with 482 additions and 47 deletions.
23 changes: 23 additions & 0 deletions .ecrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"Version": "2.7.0",
"Verbose": false,
"Debug": false,
"IgnoreDefaults": false,
"SpacesAftertabs": false,
"NoColor": false,
"Exclude": [
"deployments/.*/.chainId",
".*.sol",
"deployments/arbitrum.*.json"
],
"AllowedContentTypes": [],
"PassedFiles": [],
"Disable": {
"EndOfLine": false,
"Indentation": false,
"InsertFinalNewline": false,
"TrimTrailingWhitespace": false,
"IndentSize": false,
"MaxLineLength": false
}
}
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PRIVATE_KEY=
INFURA_KEY=
REPORT_GAS=
ETHERSCAN_API_KEY=XXXX-XXXX-XXXX-XXXX
ETHERSCAN_API_KEY=XXXX-XXXX-XXXX-XXXX
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ artifacts
coverage
keystore
deployments
scripts/**/*.sh
scripts/**/*.sh
6 changes: 3 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

**Specific updates (required)**
<!--- List out all significant updates your code introduces -->
-
-
-
- ...
- ...
- ...

**How did you test each of these updates (required)**
<!-- A detailed description of how you tested your code changes. Include details of your testing environment, and the tests you ran to see how your change affects other areas of the code, etc. -->
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
run: yarn test:coverage

- name: Upload coverage reports
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./coverage/lcov.info
name: protocol
name: ${{ github.event.repository.name }}
token: ${{ secrets.CI_CODECOV_TOKEN }}

editorconfig:
Expand Down
Loading

0 comments on commit e247dbd

Please sign in to comment.