Skip to content

Commit 23f0a10

Browse files
committed
add prettier and lint
1 parent 68b4430 commit 23f0a10

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+21302
-21262
lines changed

.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"endOfLine": "lf",
3+
"arrowParens": "always",
4+
"useTabs": true,
5+
"tabWidth": 4,
6+
"semi": true
7+
}

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ To get a local copy up and running follow these simple example steps.
8282

8383
### **Prerequisites**
8484

85-
- NodeJS
85+
- NodeJS
8686

8787
To install node go on the [official Node website](https://nodejs.org/en/download/), and download the LTS package for your Operating System.
8888

@@ -145,17 +145,17 @@ npm run dev
145145

146146
## **Roadmap**
147147

148-
- [ ] Style localhost landing page + components
149-
- [ ] Components selection workflow
150-
- [ ] Write tests
151-
- [ ] Implement support for new Blockchain development environments:
152-
- [ ] Foundry
153-
- [ ] Anchor
154-
- [ ] Add OpenZeppelin Support
155-
- [ ] Add collection floor price component
156-
- [ ] Templates selection workflow
157-
- [ ] Implement GitHub Actions build on push
158-
- [ ] Review contributions .md
148+
- [ ] Style localhost landing page + components
149+
- [ ] Components selection workflow
150+
- [ ] Write tests
151+
- [ ] Implement support for new Blockchain development environments:
152+
- [ ] Foundry
153+
- [ ] Anchor
154+
- [ ] Add OpenZeppelin Support
155+
- [ ] Add collection floor price component
156+
- [ ] Templates selection workflow
157+
- [ ] Implement GitHub Actions build on push
158+
- [ ] Review contributions .md
159159

160160
See the [open issues](https://github.com/eversmile12/create-web3-dapp/issues) for a full list of proposed features (and known issues).
161161

helpers/backend_helpers/setupHardhat.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,7 @@ export const setUpHardhat = (dappInfo: dappInfo) => {
6565

6666
bar2.update(100);
6767
bar2.stop();
68-
console.log(chalk.green("Smart Contract Development Environment copied ✅"));
68+
console.log(
69+
chalk.green("Smart Contract Development Environment copied ✅")
70+
);
6971
};

helpers/utils/cloneRepo.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ export const cloneRepo = (projectPath: string, dappInfo: dappInfo) => {
4545
bar1.stop();
4646

4747
if (dappInfo.useBackend) {
48-
console.log(chalk.yellow(`Copying ${dappInfo.backendProvider} files...`));
48+
console.log(
49+
chalk.yellow(`Copying ${dappInfo.backendProvider} files...`)
50+
);
4951
switch (dappInfo.backendProvider) {
5052
case "hardhat":
5153
setUpHardhat(dappInfo);

helpers/utils/createEnv.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ export const createEnv = (
88
exposed = true
99
) => {
1010
if (Object.keys(apiKeys).length) {
11-
const writeStream = fs.createWriteStream(path.join(projectPath, ".env"));
11+
const writeStream = fs.createWriteStream(
12+
path.join(projectPath, ".env")
13+
);
1214
for (const [key, value] of Object.entries(apiKeys)) {
1315
writeStream.write(
1416
exposed

helpers/utils/createPackage.ts

+16-8
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,30 @@ export const createPackageJson = async (
5151
packageJson["dependencies"]["@project-serum/borsh"] = "^0.2.5";
5252
packageJson["dependencies"]["@solana/wallet-adapter-react-ui"] =
5353
"^0.9.11";
54-
packageJson["dependencies"]["@solana/wallet-adapter-phantom"] = "^0.9.8";
55-
packageJson["dependencies"]["@solana/wallet-adapter-react"] = "^0.15.8";
56-
packageJson["dependencies"]["@solana/wallet-adapter-base"] = "^0.9.9";
54+
packageJson["dependencies"]["@solana/wallet-adapter-phantom"] =
55+
"^0.9.8";
56+
packageJson["dependencies"]["@solana/wallet-adapter-react"] =
57+
"^0.15.8";
58+
packageJson["dependencies"]["@solana/wallet-adapter-base"] =
59+
"^0.9.9";
5760
packageJson["dependencies"]["@solana/web3.js"] = "^1.50.1";
5861
}
5962

6063
if (useBackend) {
6164
switch (backendProvider) {
6265
case "hardhat":
63-
packageJson["devDependencies"]["@nomicfoundation/hardhat-toolbox"] =
64-
"^1.0.2";
66+
packageJson["devDependencies"][
67+
"@nomicfoundation/hardhat-toolbox"
68+
] = "^1.0.2";
6569
packageJson["devDependencies"]["hardhat"] = "^2.10.1";
6670
break;
6771
case "foundry":
6872
console.log(
6973
"It will be soon released - reverting to Hardhat as of now"
7074
);
71-
packageJson["devDependencies"]["@nomicfoundation/hardhat-toolbox"] =
72-
"^1.0.2";
75+
packageJson["devDependencies"][
76+
"@nomicfoundation/hardhat-toolbox"
77+
] = "^1.0.2";
7378
packageJson["devDependencies"]["@hardhat"] = "^2.10.1";
7479
break;
7580
default:
@@ -78,7 +83,10 @@ export const createPackageJson = async (
7883
}
7984

8085
bar1.update(150);
81-
fs.writeFileSync("package.json", JSON.stringify(packageJson, null, "\t"));
86+
fs.writeFileSync(
87+
"package.json",
88+
JSON.stringify(packageJson, null, "\t")
89+
);
8290
bar1.update(200);
8391
bar1.stop();
8492

index.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -183,17 +183,23 @@ async function run() {
183183
message: "Choose a Blockchain development environment:",
184184
choices: [
185185
{ title: "Hardhat", value: "hardhat" },
186-
{ title: "Foundry (not yet supported)", value: "foundry" },
186+
{
187+
title: "Foundry (not yet supported)",
188+
value: "foundry",
189+
},
187190
],
188191
initial: 0,
189-
}).then((data) => (dappInfo.backendProvider = data.backendType));
192+
}).then(
193+
(data) => (dappInfo.backendProvider = data.backendType)
194+
);
190195
}
191196
}
192197

193198
const alchemyAPIKey: string = await prompts({
194199
type: "text",
195200
name: "apiKey",
196-
message: "Insert your Alchemy API Key (if none, 'demo' will be used",
201+
message:
202+
"Insert your Alchemy API Key (if none, 'demo' will be used",
197203
initial: "demo",
198204
}).then((data) => data.apiKey);
199205

@@ -207,7 +213,9 @@ async function run() {
207213
cleanUpFiles();
208214

209215
console.log(
210-
chalk.green("Visit https://docs.alchemy.com/for the complete tutorial")
216+
chalk.green(
217+
"Visit https://docs.alchemy.com/for the complete tutorial"
218+
)
211219
);
212220
} catch (e) {
213221
selfDestroy();

0 commit comments

Comments
 (0)