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
git pull | |
git checkout --orphan main-clean | |
git add . | |
git commit --allow-empty -n -m "refactor: remove history" | |
git branch -D main | |
git branch -m main | |
git push -f origin main |
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
#!/bin/sh | |
. "$(dirname "$0")/_/husky.sh" | |
# Get current branch name | |
branch="$(git rev-parse --abbrev-ref HEAD)" | |
# Prevent pushing to main or develop | |
if [ "$branch" = "main" ] || [ "$branch" = "develop" ]; then | |
echo "❌ You can't commit directly to $branch branch" | |
exit 1 |
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
name: Todo Comments | |
on: [ pull_request ] | |
jobs: | |
todo-comments: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: |
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
name: Validate pull request title | |
on: | |
pull_request: | |
types: [ opened, edited ] | |
jobs: | |
validate-pr-title: | |
name: Validate pull request title | |
runs-on: ubuntu-latest |
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
pre-commit: | |
# Get the name of the current branch | |
currentBranch=$(git rev-parse --abbrev-ref HEAD) | |
# Check if the current branch is "main" or "master" and reject commit | |
if [ "$currentBranch" = "main" ] || [ "$currentBranch" = "master" ]; then | |
echo "ERROR: Commit rejected by Husky pre-commit hook!" | |
echo "You are about to commit to the \"$currentBranch\" branch!" | |
echo "Please create a new branch and commit there." |
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
<h3>Ihre Cookie ID</h3> | |
[borlabs-cookie type="uid"/] | |
<h3>Cookie Einstellung</h3> | |
[borlabs-cookie type="btn-cookie-preference" title="Einstellung öffnen" element="link"/] | |
<h3>Cookie Auflistung</h3> | |
[borlabs-cookie type="cookie-list"/] | |
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
// Manual: https://stackoverflow.com/a/72364191/14331711 | |
// Syntax: https://tailwindcss.com/docs/customizing-colors | |
$bg-blue-900: #004070; | |
$bg-blue-700: #537AA2; | |
$bg-blue-300: #C1CCDD; | |
$bg-blue-50: #EAEDF3; | |
$white: #FFF; | |
$black: #000; | |
// Define Tailwind Colors |
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
Show hidden characters
{ | |
"files": [ | |
"assets/ts/*.ts" | |
], | |
"compilerOptions": { | |
"allowJs": true, | |
"module": "commonjs", | |
"sourceMap": true, | |
"noImplicitAny": true, | |
"target": "es6", |
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
const defaultTheme = require('tailwindcss/defaultTheme') | |
module.exports = { | |
content: [ | |
'./**/*.php', | |
'../Resources/**/*.{html,js}', | |
], | |
important: true, | |
safelist: [ | |
'bg-white', |
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
{ | |
"data": { | |
"slug": "loremipsum", | |
"siteName": "loremipsum", | |
"url": "https://loremipsum.de" | |
}, | |
"settings": { | |
"isEnv": "production", | |
"isServer": false | |
}, |
NewerOlder