generated from noi-techpark/webcomp-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: include reuse comments in files and add update ignored files in …
…dep5
- Loading branch information
Peter Schweigkofler
committed
Sep 27, 2024
1 parent
43c48a3
commit b4c95d3
Showing
4 changed files
with
13 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -3,6 +3,6 @@ Upstream-Name: webcomp-boilerplate | |
Upstream-Contact: NOI Techpark <[email protected]> | ||
Source: https://github.com/noi-techpark/webcomp-boilerplate | ||
|
||
Files: .github/* .gitignore LICENSE.md .pre-commit-config.yaml *.json .editorconfig .env.example wcs-logo.png | ||
Files: .github/* infrastructure/* .gitignore .pre-commit-config.yaml LICENSE.md .browserslistrc .editorconfig .prettierrc *.png *.svg *.gif *.json | ||
Copyright: (c) NOI Techpark <[email protected]> | ||
License: CC0-1.0 |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-FileCopyrightText: NOI Techpark <[email protected]> | ||
// | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
import axios from 'axios'; | ||
|
||
export const suedtirolRadeltApiClient = axios.create({ | ||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-FileCopyrightText: NOI Techpark <[email protected]> | ||
// | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
import { suedtirolRadeltApiClient } from '@/api/base'; | ||
|
||
export interface SuedtirolRadeltItem { | ||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-FileCopyrightText: NOI Techpark <[email protected]> | ||
// | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
import { createI18n } from 'vue-i18n'; | ||
import messagesEn from '@/assets/locales/en.json'; | ||
import messagesDe from '@/assets/locales/de.json'; | ||
|