Skip to content

Commit

Permalink
fix: removed empty lines from default files (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC authored Dec 8, 2024
1 parent 302468e commit 50fc88b
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions moccasin/constants/file_data.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
GITATTRIBUTES = """
*.sol linguist-language=Solidity
*.vy linguist-language=Python
GITATTRIBUTES = """*.sol linguist-language=Solidity
*.vy linguist-language=Vyper
"""

GITIGNORE = """
# Byte-compiled / optimized / DLL files
GITIGNORE = """# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
Expand Down Expand Up @@ -203,7 +201,6 @@ def increment():

DEPLOY_SCRIPT_DEFAULT = """from src import Counter
from moccasin.boa_tools import VyperContract
# from boa.contracts.vyper.vyper_contract import VyperContract
def deploy() -> VyperContract:
counter: VyperContract = Counter.deploy()
Expand All @@ -223,8 +220,7 @@ def moccasin_main() -> VyperContract:
def counter_contract():
return deploy()"""

COVERAGERC = """
[run]
COVERAGERC = """[run]
plugins = boa.coverage
"""

Expand All @@ -238,11 +234,18 @@ def counter_contract():
## Quickstart
1. Deploy to a fake local network that titanoboa automatically spins up!
```bash
mox init
mox run deploy
```
2. Run tests
```
mox test
```
_For documentation, please run `mox --help` or visit [the Moccasin documentation](https://cyfrin.github.io/moccasin)_
"""

Expand Down

0 comments on commit 50fc88b

Please sign in to comment.