This file contains hidden or 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/bash | |
add_use_client_directive() { | |
local directory="$1" | |
if [ -z "$directory" ]; then | |
echo "Usage: $0 <directory>" | |
return 1 | |
fi |
This file contains hidden or 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: Automatic Tagging Check | |
on: | |
pull_request: | |
branches: ["develop"] | |
jobs: | |
create_tag: | |
runs-on: ubuntu-latest |
This file contains hidden or 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
// My prefered settings are like this. Just remember to change the parser to the vue-eslint-parser for eslint to be able to work. | |
module.exports = { | |
'env': { | |
'browser': true, | |
'es2021': true | |
}, | |
'extends': [ | |
'eslint:recommended', | |
'plugin:vue/vue3-essential', | |
'plugin:@typescript-eslint/recommended' |