-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
160 changed files
with
164,589 additions
and
2,336 deletions.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = false | ||
|
||
[*.{js,json,ts}] | ||
indent_size = 4 | ||
|
||
[*.{js,ts}] | ||
insert_final_newline = true |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/types/** | ||
/gi-types/** | ||
.eslintrc.js | ||
_build |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
'prettier', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
sourceType: 'module', | ||
project: 'tsconfig.json', | ||
tsconfigRootDir: __dirname, | ||
}, | ||
rules: { | ||
'@typescript-eslint/restrict-template-expressions': ['error', { allowNullish: true, },], | ||
'prettier/prettier': 'error', | ||
}, | ||
plugins: ['@typescript-eslint', 'prettier'], | ||
root: true, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,10 +1,9 @@ | ||
build | ||
obj-i686-linux-gnu | ||
debian/.debhelper | ||
debian/salatokapp | ||
flatpak-builder | ||
.flatpak-builder | ||
repo | ||
git | ||
dir | ||
build-dir | ||
_build | ||
**/*.swp | ||
**/*.*~ | ||
**/tags.* | ||
.flatpak | ||
node_modules/ | ||
.vscode/ | ||
.fenv/ | ||
.flatpak-builder/ |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
include: | ||
- project: "gnome/citemplates" | ||
file: "flatpak/flatpak_ci_initiative.yml" | ||
|
||
variables: | ||
GIT_SUBMODULE_STRATEGY: recursive | ||
GIT_SUBMODULE_DEPTH: 1 | ||
MANIFEST_PATH: "com.github.adenlall.salatok-gtk.json" | ||
BUNDLE: "salatok.flatpak" | ||
FLATPAK_MODULE: "salatok" | ||
RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo" | ||
APP_ID: "com.github.adenlall.salatok-gtk" | ||
|
||
flatpak: | ||
extends: '.flatpak@x86_64' | ||
before_script: | ||
- flatpak --user install -y org.freedesktop.Sdk.Extension.node18//23.08 org.freedesktop.Sdk.Extension.typescript//23.08 | ||
|
||
flatpak-aarch64: | ||
extends: '.flatpak@aarch64' | ||
before_script: | ||
- flatpak --user install -y org.freedesktop.Sdk.Extension.node18//23.08 org.freedesktop.Sdk.Extension.typescript//23.08 | ||
|
||
nightly: | ||
extends: ".publish_nightly" | ||
|
||
eslint: | ||
image: quay.io/fedora/fedora:latest | ||
|
||
variables: | ||
LINT_LOG: "eslint-report.txt" | ||
script: | ||
- sudo dnf install -y npm | ||
- npm install | ||
- npx eslint -o $LINT_LOG --no-color src || { cat $LINT_LOG; false; } | ||
artifacts: | ||
paths: | ||
- ${LINT_LOG} | ||
when: on_failure |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Description of the bug | ||
|
||
Detail the issue that you're facing as much as possible. Put as much | ||
information as you can, potentially with images showing the issue. | ||
|
||
Salatok version: | ||
|
||
Operating system: | ||
|
||
Steps to reproduce: | ||
|
||
1. Open Salatok | ||
2. Change X to something else | ||
3. ... | ||
|
||
Expected result: | ||
|
||
Actual result: | ||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Description | ||
|
||
Please describe your feature with details. | ||
Add screenshots, design images or other files which would help for | ||
understanding the feature or for implementation. | ||
Also add links when needed, for instance for implementation standards | ||
or other relevant resources. | ||
|
||
Proposed Mockups: | ||
|
||
## Design Tasks | ||
|
||
* [ ] design tasks | ||
|
||
## Development Tasks | ||
|
||
* [ ] development tasks | ||
|
||
## QA Tasks | ||
|
||
* [ ] qa (quality assurance) tasks |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "gi-types"] | ||
path = gi-types | ||
url = https://gitlab.gnome.org/BrainBlasted/gi-typescript-definitions.git | ||
branch = nightly |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
singleQuote: true, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Meg Ford <megford@gnome.org> | ||
|
||
Design by: | ||
|
||
Reda Lazri <the.red.shortcut@gmail.com> | ||
Garrett LaSage <garrettl@gmail.com> | ||
Hylke Bons <hylkebons@gmail.com> |
Oops, something went wrong.