Skip to content

Commit

Permalink
[#146] Ignore packages while check/formatting files
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Jan 12, 2024
1 parent 7e477dc commit 1d03625
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 25 deletions.
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: Bug report
about: Bug report about the Safe smart contracts

---

## Prerequisites
Expand All @@ -10,7 +9,7 @@ about: Bug report about the Safe smart contracts
- Support questions are better asked on our Discord: https://chat.safe.global
- Please ensure the issue isn't already reported.

*Please delete the above section and the instructions in the sections below before submitting*
_Please delete the above section and the instructions in the sections below before submitting_

## Description

Expand All @@ -26,7 +25,7 @@ Please describe concisely the bug you have found, and what you expect instead.

## Steps to reproduce

If applicable, please provide a *minimal* source code example to trigger the bug you have found.
If applicable, please provide a _minimal_ source code example to trigger the bug you have found.
Provide as much information as necessary to reproduce the bug.

## Additional context
Expand Down
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: Feature request
about: Suggest an idea or feature request for the Safe smart contracts project

---

## Prerequisites
Expand All @@ -10,7 +9,7 @@ about: Suggest an idea or feature request for the Safe smart contracts project
- Support questions are better asked on our Discord: https://chat.safe.global
- Please ensure the issue isn't already reported.

*Please delete the above section and the instructions in the sections below before submitting*
_Please delete the above section and the instructions in the sections below before submitting_

## Context / issue

Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/certora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rule:
["verify4337Module.sh", "verifyTransactionExecutionMethods.sh", "verifyValidationData.sh"]
rule: ['verify4337Module.sh', 'verifyTransactionExecutionMethods.sh', 'verifyValidationData.sh']
defaults:
run:
working-directory: ./modules/4337
Expand All @@ -33,7 +32,7 @@ jobs:

- name: Install java
uses: actions/setup-java@v3
with: { java-version: "17", java-package: jre, distribution: semeru }
with: { java-version: '17', java-package: jre, distribution: semeru }

- name: Install certora cli
run: pip install -Iv certora-cli
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CLA Assistant"
name: 'CLA Assistant'

on:
issue_comment:
Expand All @@ -16,7 +16,7 @@ jobs:
CLAAssistant:
runs-on: ubuntu-latest
steps:
- name: "CLA Assistant"
- name: 'CLA Assistant'
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
# Beta Release
uses: contributor-assistant/[email protected]
Expand All @@ -25,18 +25,18 @@ jobs:
# the below token should have repo scope and must be manually added by you in the repository's secret
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }}
with:
path-to-signatures: "signatures/version1/cla.json"
path-to-document: "https://safe.global/cla" # e.g. a CLA or a DCO document
path-to-signatures: 'signatures/version1/cla.json'
path-to-document: 'https://safe.global/cla' # e.g. a CLA or a DCO document
# branch should not be protected
branch: "main"
branch: 'main'
# user names of users allowed to contribute without CLA
allowlist: lukasschor,rmeissner,Uxio0,tschubotz,bot*

# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
# enter the remote organization name where the signatures should be stored (Default is storing the signatures in the same repository)
remote-organization-name: "safe-global"
remote-organization-name: 'safe-global'
# enter the remote repository name where the signatures should be stored (Default is storing the signatures in the same repository)
remote-repository-name: "cla-signatures"
remote-repository-name: 'cla-signatures'
#create-file-commit-message: 'For example: Creating file for storing CLA Signatures'
#signed-commit-message: 'For example: $contributorName has signed the CLA in #$pullRequestNo'
#custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
modules/**
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
Safe Modules
===================
# Safe Modules

This repository contains a collection of modules for the [Safe Smart Account](https://github.com/safe-global/safe-contracts)

Modules
-------
## Modules

- [4337 Module](./modules/4337)
- [Allowance Module](./modules/allowances)

Security and Liability
----------------------
## Security and Liability

All contracts are WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

License
-------
## License

All smart contracts are released under LGPL v.3.

Maintainers
------------
## Maintainers

- Richard Meissner ([rmeissner](https://github.com/rmeissner))

0 comments on commit 1d03625

Please sign in to comment.