Vincent Brunet 1 year ago
parent
commit
d7d83c9a9c
3 changed files with 11 additions and 38 deletions
  1. 4 37
      .github/pull_request_template.md
  2. 7 0
      .vscode/settings.json
  3. 0 1
      cli/src/lib.rs

+ 4 - 37
.github/pull_request_template.md

@@ -1,45 +1,12 @@
 
-> ⚠️ NOTE: Use notes like this to emphasize something important about the PR.
->
->  This could include other PRs this PR is built on top of; API breaking changes; reasons for why the PR is on hold; or anything else you would like to draw attention to.
-
-| Status  | Type  | ⚠️ Core Change | Issue |
-| :---: | :---: | :---: | :--: |
-| Ready/Hold | Feature/Bug/Tooling/Refactor/Hotfix | Yes/No | [Link](<Issue link here>) |
-
-## Problem
+# Problem
 
 _What problem are you trying to solve?_
 
-
-## Solution
+# Solution
 
 _How did you solve the problem?_
 
+# Other changes (e.g. bug fixes, small refactors)
 
-## Before & After Screenshots
-
-_Insert screenshots of example code output_
-
-**BEFORE**:
-[insert screenshot here]
-
-**AFTER**:
-[insert screenshot here]
-
-
-## Other changes (e.g. bug fixes, small refactors)
-
-
-## Deploy Notes
-
-_Notes regarding deployment of the contained body of work. These should note any
-new dependencies, new scripts, etc._
-
-**New scripts**:
-
-- `script` : script details
-
-**New dependencies**:
-
-- `dependency` : dependency details
+_What other unrelated changes are included in this PR ?_

+ 7 - 0
.vscode/settings.json

@@ -0,0 +1,7 @@
+{
+    "workbench.colorCustomizations": {
+        "activityBar.background": "#13341D",
+        "titleBar.activeBackground": "#1B4829",
+        "titleBar.activeForeground": "#F7FCF9"
+    }
+}

+ 0 - 1
cli/src/lib.rs

@@ -174,7 +174,6 @@ fn init(
         fs::create_dir(&project_name)?;
     }
     std::env::set_current_dir(&project_name)?;
-    fs::create_dir_all("app")?;
 
     let mut cfg = Config::default();
     let jest = test_template == anchor_cli::rust_template::TestTemplate::Jest;