Skip to content
This repository was archived by the owner on May 4, 2025. It is now read-only.

Commit 395525e

Browse files
committed
source code upload
0 parents  commit 395525e

File tree

125 files changed

+62210
-0
lines changed

Some content is hidden

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

125 files changed

+62210
-0
lines changed

.eslintrc.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
extends: eslint-config-dmitmel/presets/node
2+
env:
3+
browser: true
4+
plugins: ["prettier"]
5+
6+
settings:
7+
node:
8+
tryExtensions: [".tsx", ".ts", ".jsx", ".js", ".json", ".node"]
9+
10+
ignorePatterns: ["src/arrpc/**"]
11+
12+
rules:
13+
prettier/prettier:
14+
- error
15+
node/no-unsupported-features/es-syntax:
16+
- error
17+
- ignores:
18+
- modules
19+
20+
overrides:
21+
- files: "**/*.ts*"
22+
extends:
23+
- eslint-config-dmitmel/presets/typescript-addon
24+
parserOptions:
25+
project: "tsconfig.json"
26+
sourceType: module
27+
rules:
28+
eqeqeq: 0
29+
require-await: 0
30+
no-undefined: 0
31+
node/no-unsupported-features/es-syntax: 0
32+
"@typescript-eslint/no-dynamic-delete": 0
33+
"@typescript-eslint/no-explicit-any": 0
34+
"@typescript-eslint/no-non-null-asserted-optional-chain": 0
35+
"@typescript-eslint/naming-convention": 0

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: smartfrigde
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. Linux, Windows, macOS]
28+
- Method of installation [e.g. snap, setup exe, aur]
29+
- Version [e.g. 3.0.7]
30+
31+
**Additional context**
32+
Add any other context about the problem here.
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: ''
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/legacy.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Legcord Legacy
2+
These builds are based on severally outdated Electron versions, only use this if you can't apply [VxKex](https://github.com/vxiiduu/VxKex/) on Windows or [OCLP](https://dortania.github.io/OpenCore-Legacy-Patcher/) on macOS.
3+
Make sure to join our [Discord server](https://discord.gg/uaW5vMY3V6) to share opinions, or to chat with Legcord developers!

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
out/
3+
dist
4+
ts-out/
5+
ts-out
6+
package-lock.json

.hooks/pre-commit

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
set -e
3+
4+
npm run format
5+
git add -A

.npmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node-linker=hoisted
2+
public-hoist-pattern=*
3+
shamefully-hoist=true
4+
virtual-store-dir-max-length=70

.prettierignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Some prettier-specific files so it doesn't die.
2+
**/*.png
3+
**/*.ico
4+
**/*.woff
5+
LICENSE
6+
.gitignore
7+
8+
node_modules
9+
out/
10+
dist
11+
ts-out/
12+
ts-out

0 commit comments

Comments
 (0)