Skip to content

Commit 3d5a396

Browse files
committed
Add initial configuration files: .env, .gitignore, and .prettierrc.json
0 parents  commit 3d5a396

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file is intentionally left blank.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.prettierrc.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"overrides": [
3+
{
4+
"files": "*.sol",
5+
"options": {
6+
"printWidth": 80,
7+
"tabWidth": 4,
8+
"useTabs": false,
9+
"singleQuote": false,
10+
"bracketSpacing": false
11+
}
12+
},
13+
{
14+
"files": "*.yml",
15+
"options": {}
16+
},
17+
{
18+
"files": "*.yaml",
19+
"options": {}
20+
},
21+
{
22+
"files": "*.toml",
23+
"options": {}
24+
},
25+
{
26+
"files": "*.json",
27+
"options": {}
28+
},
29+
{
30+
"files": "*.js",
31+
"options": {}
32+
},
33+
{
34+
"files": "*.ts",
35+
"options": {}
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)