Skip to content

Commit 01106b4

Browse files
baruchirobrafdlogshaiu
authored
Breaking: major infrastructure upgrade (#579)
Part of #578 --------- Co-authored-by: Jonathan <brafdlog@gmail.com> Co-authored-by: Shai Ungar <shaiungar@gmail.com>
1 parent bb3150a commit 01106b4

File tree

419 files changed

+9444
-50868
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

419 files changed

+9444
-50868
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 21 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

.devcontainer/gnome-keyring-fix.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

.env

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
VITE_APP_VERSION=0.0.0
2+
VITE_APP_NAME=caspion
3+
4+
VITE_SENTRY_DSN=
5+
6+
VITE_GOOGLE_CLIENT_ID=
7+
VITE_GOOGLE_CLIENT_SECRET=

.eslintignore

Lines changed: 0 additions & 61 deletions
This file was deleted.

.eslintrc.cjs

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
es2021: true,
5+
node: true,
6+
browser: false,
7+
},
8+
extends: [
9+
'eslint:recommended',
10+
/** @see https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#recommended-configs */
11+
'plugin:@typescript-eslint/recommended',
12+
'plugin:@typescript-eslint/stylistic-type-checked',
13+
'prettier',
14+
],
15+
parser: '@typescript-eslint/parser',
16+
parserOptions: {
17+
ecmaVersion: 12,
18+
sourceType: 'module',
19+
project: './tsconfig.test.json',
20+
},
21+
plugins: ['@typescript-eslint'],
22+
ignorePatterns: ['node_modules/**', '**/dist/**'],
23+
rules: {
24+
'@typescript-eslint/no-unused-vars': [
25+
'error',
26+
{
27+
argsIgnorePattern: '^_',
28+
varsIgnorePattern: '^_',
29+
},
30+
],
31+
'@typescript-eslint/no-var-requires': 'off',
32+
'@typescript-eslint/consistent-type-imports': [
33+
'error',
34+
{
35+
fixStyle: 'inline-type-imports',
36+
},
37+
],
38+
// '@typescript-eslint/prefer-optional-chain': 'warn',
39+
// '@typescript-eslint/prefer-nullish-coalescing': 'warn',
40+
/**
41+
* Having a semicolon helps the optimizer interpret your code correctly.
42+
* This avoids rare errors in optimized code.
43+
* @see https://twitter.com/alex_kozack/status/1364210394328408066
44+
*/
45+
semi: ['error', 'always'],
46+
/**
47+
* This will make the history of changes in the hit a little cleaner
48+
*/
49+
'comma-dangle': ['warn', 'always-multiline'],
50+
/**
51+
* Just for beauty
52+
*/
53+
quotes: [
54+
'warn',
55+
'single',
56+
{
57+
avoidEscape: true,
58+
},
59+
],
60+
},
61+
};

.eslintrc.js

Lines changed: 0 additions & 99 deletions
This file was deleted.

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.github/actions/**/*.js linguist-detectable=false
2+
scripts/*.js linguist-detectable=false
3+
*.config.js linguist-detectable=false
4+
* text=auto eol=lf

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees:
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
16+
1. Go to '...'
17+
2. Click on '....'
18+
3. Scroll down to '....'
19+
4. See error
20+
21+
**Expected behavior**
22+
A clear and concise description of what you expected to happen.
23+
24+
**Screenshots**
25+
If applicable, add screenshots to help explain your problem.
26+
27+
**Additional context**
28+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Questions & Discussions
4+
url: https://github.com/brafdlog/caspion/discussions/categories/q-a
5+
about: Use GitHub discussions for message-board style questions and discussions.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees:
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)