forked from posit-dev/positron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Git init new project (posit-dev#3287)
Run git init without directory prompt Create initial project files Signed-off-by: Tim Mok <[email protected]> Co-authored-by: sharon <[email protected]>
- Loading branch information
1 parent
b644b1e
commit e650cbf
Showing
4 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/vs/workbench/services/positronNewProject/common/positronNewProjectTemplates.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (C) 2024 Posit Software, PBC. All rights reserved. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
export const DOT_IGNORE_PYTHON: string = `*.pyc | ||
*.pyo | ||
__pycache__/ | ||
`; | ||
export const DOT_IGNORE_R: string = `.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata | ||
`; | ||
|
||
export const DOT_IGNORE_JUPYTER: string = `.ipynb_checkpoints | ||
*/.ipynb_checkpoints/* | ||
`; |