1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-11-08 22:31:31 +01:00

chore: better Prettier config for easier reviews

This commit is contained in:
Théo LUDWIG 2023-10-23 23:02:29 +02:00
parent e0115dd7d9
commit 211648d29f
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
8 changed files with 65 additions and 65 deletions

View File

@ -1,2 +1,2 @@
BasedOnStyle: 'Google'
BasedOnStyle: "Google"
ColumnLimit: 0

View File

@ -1,8 +1,8 @@
---
name: '🐛 Bug Report'
about: 'Report an unexpected problem or unintended behavior.'
title: '[Bug]'
labels: 'bug'
name: "🐛 Bug Report"
about: "Report an unexpected problem or unintended behavior."
title: "[Bug]"
labels: "bug"
---
<!--

View File

@ -1,8 +1,8 @@
---
name: '📜 Documentation'
about: 'Correct spelling errors, improvements or additions to documentation files (README, CONTRIBUTING...).'
title: '[Documentation]'
labels: 'documentation'
name: "📜 Documentation"
about: "Correct spelling errors, improvements or additions to documentation files (README, CONTRIBUTING...)."
title: "[Documentation]"
labels: "documentation"
---
<!-- Please make sure your issue has not already been fixed. -->

View File

@ -1,8 +1,8 @@
---
name: '✨ Feature Request'
about: 'Suggest a new feature idea.'
title: '[Feature]'
labels: 'feature request'
name: "✨ Feature Request"
about: "Suggest a new feature idea."
title: "[Feature]"
labels: "feature request"
---
<!-- Please make sure your issue has not already been fixed. -->

View File

@ -1,8 +1,8 @@
---
name: '🔧 Improvement'
about: 'Improve structure/format/performance/refactor/tests of the code.'
title: '[Improvement]'
labels: 'improvement'
name: "🔧 Improvement"
about: "Improve structure/format/performance/refactor/tests of the code."
title: "[Improvement]"
labels: "improvement"
---
<!-- Please make sure your issue has not already been fixed. -->

View File

@ -1,8 +1,8 @@
---
name: '🙋 Question'
about: 'Further information is requested.'
title: '[Question]'
labels: 'question'
name: "🙋 Question"
about: "Further information is requested."
title: "[Question]"
labels: "question"
---
### Question

View File

@ -1,4 +1,4 @@
name: 'CI'
name: "CI"
on:
push:
@ -8,33 +8,33 @@ on:
jobs:
ci:
runs-on: 'ubuntu-latest'
runs-on: "ubuntu-latest"
steps:
- uses: 'actions/checkout@v3.5.3'
- uses: "actions/checkout@v3.5.3"
- run: 'sudo apt update'
- run: "sudo apt update"
- name: 'Install Build Tools'
run: 'sudo apt install --yes build-essential gcc make clang-format'
- name: "Install Build Tools"
run: "sudo apt install --yes build-essential gcc make clang-format"
- name: 'Install Documentation Tools'
run: 'sudo apt install --yes doxygen doxygen-gui doxygen-doc graphviz'
- name: "Install Documentation Tools"
run: "sudo apt install --yes doxygen doxygen-gui doxygen-doc graphviz"
- run: 'gcc --version'
- run: "gcc --version"
- run: 'make'
- run: 'make run'
- run: 'make test'
- run: 'make lint'
- run: 'make documentation'
- run: 'make set_version'
- run: 'make clean'
- run: "make"
- run: "make run"
- run: "make test"
- run: "make lint"
- run: "make documentation"
- run: "make set_version"
- run: "make clean"
lint-commit:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.5.3'
with:
fetch-depth: 0
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3.5.3"
with:
fetch-depth: 0
- uses: 'wagoid/commitlint-github-action@v5.4.1'
- uses: "wagoid/commitlint-github-action@v5.4.1"

View File

@ -1,4 +1,4 @@
name: 'Release'
name: "Release"
on:
push:
@ -6,52 +6,52 @@ on:
jobs:
release:
runs-on: 'ubuntu-latest'
runs-on: "ubuntu-latest"
steps:
- uses: 'actions/checkout@v3.5.3'
- uses: "actions/checkout@v3.5.3"
with:
fetch-depth: 0
persist-credentials: false
submodules: recursive
- name: 'Import GPG key'
uses: 'crazy-max/ghaction-import-gpg@v5.3.0'
- name: "Import GPG key"
uses: "crazy-max/ghaction-import-gpg@v5.3.0"
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_user_signingkey: true
git_commit_gpgsign: true
- run: 'sudo apt update'
- run: "sudo apt update"
- name: 'Install Build Tools'
run: 'sudo apt install --yes build-essential gcc make clang-format'
- name: "Install Build Tools"
run: "sudo apt install --yes build-essential gcc make clang-format"
- name: 'Install Documentation Tools'
run: 'sudo apt install --yes doxygen doxygen-gui doxygen-doc graphviz'
- name: "Install Documentation Tools"
run: "sudo apt install --yes doxygen doxygen-gui doxygen-doc graphviz"
- run: 'make set_version'
- run: "make set_version"
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.7.0'
- name: "Use Node.js"
uses: "actions/setup-node@v3.7.0"
with:
node-version: '18.17.0'
node-version: "18.17.0"
- name: 'Install Release Tools'
run: 'npm install --save-dev semantic-release@21.0.7 @commitlint/cli@17.6.7 @commitlint/config-conventional@17.6.7 @semantic-release/git@10.0.1 @semantic-release/exec@6.0.3 @saithodev/semantic-release-backmerge@3.2.0 vercel@31.2.2'
- name: "Install Release Tools"
run: "npm install --save-dev semantic-release@21.0.7 @commitlint/cli@17.6.7 @commitlint/config-conventional@17.6.7 @semantic-release/git@10.0.1 @semantic-release/exec@6.0.3 @saithodev/semantic-release-backmerge@3.2.0 vercel@31.2.2"
- run: 'rm --force package.json package-lock.json'
- run: "rm --force package.json package-lock.json"
- name: 'Release'
run: 'npx semantic-release'
- name: "Release"
run: "npx semantic-release"
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}
- name: 'Generate Documentation'
run: 'make documentation'
- name: "Generate Documentation"
run: "make documentation"
- name: 'Deploy to Vercel'
- name: "Deploy to Vercel"
run: 'npx vercel ./documentation/html --token="${VERCEL_TOKEN}" --prod'
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}