-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from jridfe/gitignore
Add .gitignore
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Ignore .gitignore, target, dist and tmp folders | ||
src/*/.gitignore | ||
src/*/target/ | ||
src/*/dist/ | ||
src/*/coverage/ | ||
/target | ||
/tmp | ||
|
||
# Ignore default target directory for the npm package 'ui5-codecompletion' | ||
.ui5 | ||
|
||
# Ignore Eclipse project and settings files | ||
.classpath | ||
.settings | ||
.project | ||
.externalToolBuilders | ||
|
||
# Ignore IntelliJ project and settings files | ||
.idea | ||
*.iml | ||
|
||
# Ignore Mac files | ||
.DS_Store | ||
|
||
# Ignore Visual Studio project and settings files | ||
*.sln | ||
*.suo | ||
web.config | ||
/.user.project.json | ||
/sap-ui-cachebuster-info.json | ||
|
||
# Ignore Visual Studio Code project and settings files | ||
.vscode/ | ||
|
||
# Ignore yarn files | ||
yarn-error.log* | ||
yarn-debug.log* | ||
.yarn-integrity | ||
# Ignore default target directory for the npm package 'ui5-schemas' | ||
.tmp |