This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
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
0 parents
commit 6df8e55
Showing
16 changed files
with
2,755 additions
and
0 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,7 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 2 | ||
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,58 @@ | ||
root: true | ||
extends: | ||
- eslint-config-dmitmel/presets/node | ||
env: | ||
browser: true | ||
parser: "@typescript-eslint/parser" | ||
parserOptions: | ||
sourceType: module | ||
plugins: | ||
- "@typescript-eslint" | ||
rules: | ||
func-names: off | ||
node/no-unsupported-features/es-syntax: | ||
- error | ||
- ignores: | ||
- modules | ||
- dynamicImport | ||
node/no-unsupported-features/es-builtins: | ||
- error | ||
- ignores: | ||
- globalThis | ||
node/no-unsupported-features/node-builtins: | ||
- error | ||
- ignores: | ||
- fs.promises | ||
|
||
node/no-missing-require: off | ||
node/no-missing-import: off | ||
node/no-unpublished-import: off | ||
node/no-unpublished-require: off | ||
node/shebang: off | ||
no-process-exit: off | ||
no-undef: off | ||
no-unused-vars: off | ||
"@typescript-eslint/no-unused-vars": error | ||
|
||
overrides: | ||
- files: "**/*.ts" | ||
extends: eslint-config-dmitmel/presets/typescript-addon | ||
rules: | ||
node/no-missing-import: off | ||
eqeqeq: off | ||
\@typescript-eslint/no-dynamic-delete: off | ||
no-return-assign: off | ||
no-void: off | ||
consistent-return: off | ||
|
||
- files: "**/src/**/*.ts" | ||
extends: eslint-config-dmitmel/rules/typescript/with-type-checking | ||
|
||
- files: "**/*.d.ts" | ||
rules: | ||
no-var: off | ||
|
||
- files: "src/**/*.ts" | ||
parserOptions: | ||
project: tsconfig.json | ||
tsconfigRootDir: edit-utils/ |
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,33 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
|
||
- name: Install Node.js dependencies | ||
run: pnpm install | ||
|
||
- name: Run linters | ||
run: pnpm run lint |
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,37 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
|
||
- name: Install Node.js dependencies | ||
run: pnpm install | ||
|
||
- name: Build TypeScript and bundle into asar | ||
run: pnpm run build-and-bundle | ||
|
||
- uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "*.asar" | ||
makeLatest: 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,106 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
|
||
# Diagnostic reports (https://nodejs.org/api/report.html) | ||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# TypeScript cache | ||
*.tsbuildinfo | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Microbundle cache | ||
.rpt2_cache/ | ||
.rts2_cache_cjs/ | ||
.rts2_cache_es/ | ||
.rts2_cache_umd/ | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
|
||
# parcel-bundler cache (https://parceljs.org/) | ||
.cache | ||
|
||
# Next.js build output | ||
.next | ||
|
||
# Nuxt.js build / generate output | ||
.nuxt | ||
dist | ||
|
||
# Gatsby files | ||
.cache/ | ||
# Comment in the public line in if your project uses Gatsby and *not* Next.js | ||
# https://nextjs.org/blog/next-9-1#public-directory-support | ||
# public | ||
|
||
# vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# TernJS port file | ||
.tern-port | ||
|
||
/*.asar |
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 @@ | ||
{ | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": false, | ||
"quoteProps": "as-needed", | ||
"jsxSingleQuote": false, | ||
"trailingComma": "all", | ||
"bracketSpacing": true, | ||
"bracketSameLine": true, | ||
"arrowParens": "always", | ||
"proseWrap": "always" | ||
} |
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 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"EditorConfig.EditorConfig", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
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 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": 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,9 @@ | ||
# Edit Utils | ||
|
||
~~Several~~ shortcuts to edit messages | ||
- Double click to edit | ||
|
||
### Todo | ||
- Fix the tiny delay after double clicking | ||
- Double click entire message, not just the content area | ||
- Ctrl-Up / Ctrl-Down to edit above and below messages |
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,18 @@ | ||
{ | ||
"id": "dev.kingfish.EditUtils", | ||
"name": "Edit Utils", | ||
"description": "Shortcuts to edit messages", | ||
"author": { | ||
"name": "King Fish", | ||
"discordID": "499400512559382538", | ||
"github": "12944qwerty" | ||
}, | ||
"version": "1.0.0", | ||
"updater": { | ||
"type": "github", | ||
"id": "qwerty-mods/edit-utils" | ||
}, | ||
"license": "MIT", | ||
"type": "replugged-plugin", | ||
"renderer": "src/index.ts" | ||
} |
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,40 @@ | ||
{ | ||
"name": "edit-utils", | ||
"version": "1.0.0", | ||
"description": "Shortcuts to edit messages", | ||
"engines": { | ||
"node": ">=14.0.0" | ||
}, | ||
"scripts": { | ||
"build": "tsx scripts/build.ts", | ||
"watch": "tsx scripts/build.ts --watch", | ||
"bundle": "tsx scripts/bundle.ts", | ||
"build-and-bundle": "pnpm run build --no-install && pnpm run bundle", | ||
"check": "tsc --noEmit", | ||
"prettier:check": "prettier ./src ./scripts --check", | ||
"eslint:check": "eslint ./src ./scripts", | ||
"prettier:fix": "prettier ./src ./scripts --write", | ||
"eslint:fix": "eslint ./src ./scripts --fix", | ||
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check", | ||
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@electron/asar": "^3.2.2", | ||
"@types/node": "^18.11.18", | ||
"@typescript-eslint/eslint-plugin": "^5.48.1", | ||
"@typescript-eslint/parser": "^5.48.1", | ||
"discord-types": "^1.3.26", | ||
"esbuild": "^0.15.18", | ||
"eslint": "^8.32.0", | ||
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-react": "^7.32.0", | ||
"prettier": "^2.8.3", | ||
"replugged": "^4.0.0-beta0.22", | ||
"tsx": "^3.12.2", | ||
"typescript": "^4.9.4" | ||
} | ||
} |
Oops, something went wrong.