Template
1
0
mirror of https://github.com/Wessel/boilerplate.git synced 2026-06-06 02:35:41 +02:00
This commit is contained in:
Wessel T
2020-06-19 23:41:38 +02:00
parent c65cff7839
commit 25c679f5cc
9 changed files with 169 additions and 13 deletions

View File

@@ -62,4 +62,4 @@
"_config": false,
"console": false
}
}
}

View File

@@ -1,14 +1,12 @@
# Contributing
**The issue tracker is only for bug reports and enhancement suggestions. If you have a question, please ask it in the [Discord](https://discord.gg/SV7DAE9) instead of opening an issue you will get redirected there anyway.**
If you wish to contribute to $(PROJECT_NAME), feel free to fork the repository and submit a pull request.
[ESLint](https://eslint.org/) is used to correct most typo's you make, so it would be helpful if you added [ESLint](https://eslint.org/) to your editor of choice)
[ESLint](https://eslint.org/) is enforced to correct most typo's you make and keep the code style the same throughout the whole project, so it would be appreciated if you installed [ESLint](https://eslint.org/) to your editor of choice
## Setup
To get ready to work on the codebase, please do the following:
1. Fork & clone the repository, and make sure you're on the **master** branch
2. Run `yarn --dev` or `npm install --dev`
4. Code your heart out and test using `yarn test` or `npm run test`!
6. [Submit a pull request](https://github.com/PassTheWessel/$(PROJECT_NAME)/compare)
4. Code your heart out and test using `yarn test` or `npm run test`
6. [Submit a pull request](https://github.com/PassTheWessel/$(PROJECT_NAME)/compare)

View File

@@ -1,7 +1,7 @@
---
name: Bug Report
about: Report an issue with $(PROJECT_NAME)
title: "[BUG] Somenthing broke"
title: "[BUG] Bug summed up in 1 sentence"
labels: bug
assignees: PassTheWessel
@@ -16,6 +16,7 @@ assignees: PassTheWessel
```
**Further details:**
- $(PROJECT_NAME) version:
- Node.js version:
- Operating system:

View File

@@ -1,7 +1,7 @@
---
name: Feature request
about: Request a feature for $(PROJECT_NAME)
title: "[ENHANCEMENT] This is an amazing new idea!"
title: "[ENHANCEMENT] Your idiea"
labels: enhancement
assignees: PassTheWessel

View File

@@ -1,7 +1,7 @@
---
name: Pull Request
about: Propose changes to $(PROJECT_NAME)
title: "[PR] This is an awesome idea i made!"
title: "[PR] Your changes"
labels: pullrequest
assignees: PassTheWessel
@@ -16,4 +16,4 @@ assignees: PassTheWessel
**Semantic versioning classification:**
- [ ] This PR changes $(PROJECT_NAME) core codebase (methods or parameters added)
- [ ] This PR includes breaking changes (methods removed or renamed, parameters moved or removed)
- [ ] This PR **only** includes non-code changes, like changes to documentation, README, etc.
- [ ] This PR **only** includes non-code changes, like changes to documentation, README, etc.

3
.gitignore vendored
View File

@@ -1,4 +1,3 @@
web/
tmp/
src/tmp
node_modules/
src/application.yml

144
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,144 @@
/*
? Extensions: rainglow, eslint, material icon theme, gitlens, fish-vscode, Docker, EditorConfig for VS Code
? Popping and Locking theme, Sass, stylelint, SVG viewer, Trailing spaces, Auto renaming tags, Better Comments,
? Regex previewer
* Color themes: Banner (rainglow), Hyrule (rainglow), Azure (rainglow), Github (rainglow),
* Heroku (rainglow), Popping and Locking
* Comment legend:
/ Info
* Note
? Question
! Somenthing's wrong
> Changed
+ Added
- Removed
todo TODO
*/
{
"window.zoomLevel": 0,
"editor.fontSize": 13,
"editor.fontWeight": "200",
"editor.fontFamily": "'SFMono-Regular','Consolas','Liberation Mono','Menlo','Courier','monospace','Operator Mono SSm Lig','OperatorMonoSSmLig-Book'",
"editor.lineHeight": 20,
"editor.cursorStyle": "line",
"editor.lineNumbers": "relative",
"editor.cursorWidth": 0,
"editor.fontLigatures": true,
"editor.cursorBlinking": "blink",
"editor.minimap.enabled": true,
"editor.smoothScrolling": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.minimap.renderCharacters": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.insertSpaces": true,
"editor.tabCompletion": "on",
"editor.formatOnPaste": true,
"editor.detectIndentation": false,
"editor.wordWrap": "off",
"editor.matchBrackets": "always",
"editor.renderWhitespace": "none",
"editor.autoClosingBrackets": "always",
"editor.tokenColorCustomizations": {
"types": "#C59F61",
"strings": "#F6EB90",
"numbers": "#C54121",
"keywords": "#C59F49",
"comments": "#6a737d",
"variables": "#C55F45",
"functions": "#C59F55"
},
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Darkside (rainglow)",
"workbench.editor.showTabs": true,
"workbench.statusBar.visible": true,
"workbench.editor.tabSizing": "fit",
"workbench.sideBar.location": "left",
"debug.toolBarLocation": "floating",
"debug.allowBreakpointsEverywhere": true,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\bash.exe", // C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe
"files.autoSave": "off",
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false
},
"breadcrumbs.enabled": true,
"breadcrumbs.filePath": "last",
"breadcrumbs.symbolPath": "on",
"breadcrumbs.symbolSortOrder": "name",
"git.enableSmartCommit": true,
"git.ignoreLimitWarning": true,
"eslint.enable": true,
"eslint.packageManager": "yarn",
"[yaml]": {
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.insertSpaces": true
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"liveshare.featureSet": "insiders",
"better-comments.tags": [
{
"tag": "/",
"color": "#008080",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "+",
"color": "#00ff00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": ">",
"color": "#FF00FF",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "-",
"color": "#ff0000",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"backgroundColor": "transparent"
}
]
}

View File

@@ -1,7 +1,7 @@
The MIT License (MIT)
Copyright (c) 2019 Wessel "PassTheWessel" T <discord@go2it.eu>
Copyright (c) 2020 Wessel "PassTheWessel" T <discord@go2it.eu>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

14
README.md Normal file
View File

@@ -0,0 +1,14 @@
<img src="$(LOGO_SQUARE).svg" align="left" width="192px" height="192px"/>
<img align="left" width="0" height="192px" hspace="10"/>
> $(PROJECT_NAME)
[![MIT License](https://img.shields.io/badge/license-MIT-007EC7.svg?style=flat-square)](/LICENSE) $(BADGES)
$(SMALL_DESC)
<br>
## Table of contents
* $(HEADER)
* $(SUB_HEADER)