This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
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 d31d931
Showing
47 changed files
with
3,379 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,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
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,3 @@ | ||
docs | ||
lib | ||
.husky |
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,44 @@ | ||
module.exports = { | ||
env: { | ||
commonjs: true, | ||
es6: true, | ||
node: true | ||
}, | ||
extends: ['eslint:recommended', 'prettier', 'plugin:prettier/recommended'], | ||
globals: {}, | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 6, | ||
sourceType: 'module' | ||
}, | ||
plugins: ['@typescript-eslint'], | ||
rules: { | ||
'prettier/prettier': 'warn', | ||
'no-cond-assign': [2, 'except-parens'], | ||
'no-unused-vars': 0, | ||
'@typescript-eslint/no-unused-vars': 1, | ||
'no-empty': [ | ||
'error', | ||
{ | ||
allowEmptyCatch: true | ||
} | ||
], | ||
'prefer-const': [ | ||
'warn', | ||
{ | ||
destructuring: 'all' | ||
} | ||
], | ||
'spaced-comment': 'warn' | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['test/**/*.ts'], | ||
globals: { | ||
describe: true, | ||
it: true, | ||
beforeEach: 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,3 @@ | ||
patreon: Snazzah | ||
ko_fi: Snazzah | ||
github: Snazzah |
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,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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: ESLint | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
- "!docs" | ||
paths: | ||
- "src/**" | ||
- ".eslintignore" | ||
- ".eslintrc.*" | ||
- ".prettierrc" | ||
- ".github/workflows/lint.yml" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
name: Lint source code | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Node v12 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run ESLint | ||
run: npm run lint:fix | ||
|
||
- name: Commit changes | ||
uses: EndBug/add-and-commit@v4 | ||
with: | ||
add: src | ||
message: "chore(lint): auto-lint source code" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,81 @@ | ||
name: Release | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
tag: | ||
name: Add/update 'latest' tag | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run latest-tag | ||
uses: EndBug/latest-tag@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# docs: | ||
# name: Update docs | ||
# runs-on: ubuntu-18.04 | ||
# needs: tag | ||
# | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v2 | ||
# | ||
# - name: Setup Node 12.x | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: 12.x | ||
# | ||
# - name: Install dependencies | ||
# run: npm install | ||
# | ||
# - name: Build documentation | ||
# run: npm run docs | ||
# | ||
# - name: Deploy documentation | ||
# uses: dbots-pkg/action-docs@v1 | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
publish-npm: | ||
name: Publish on NPM | ||
runs-on: ubuntu-latest | ||
# needs: docs | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js for NPM | ||
uses: actions/setup-node@v1 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- run: npm install | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
publish-gpr: | ||
name: Publish on GPR | ||
runs-on: ubuntu-latest | ||
# needs: docs | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js for GPR | ||
uses: actions/setup-node@v1 | ||
with: | ||
registry-url: 'https://npm.pkg.github.com/' | ||
scope: '@dexare' | ||
|
||
- run: npm install | ||
- run: npm run gpr | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,17 @@ | ||
# Packages | ||
node_modules/ | ||
yarn.lock | ||
package-lock.json | ||
|
||
# Log files | ||
logs/ | ||
*.log | ||
|
||
# Miscellaneous | ||
.tmp/ | ||
.vscode/ | ||
docs/docs.json | ||
webpack/ | ||
testing/ | ||
lib/ | ||
.husky/_/ |
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 @@ | ||
_ |
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,5 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged | ||
npm run 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,25 @@ | ||
pull_request_rules: | ||
- name: Automatic merge on approval | ||
conditions: | ||
- approved-reviews-by=Snazzah | ||
actions: | ||
merge: | ||
method: merge | ||
- name: Merge non-breaking dependencies automatically | ||
conditions: | ||
- author~=^dependabot(|-preview)\[bot\]$ | ||
- title~=from (?P<major>\d+).\d+.\d+ to (?P=major).\d+.\d+ | ||
actions: | ||
merge: | ||
method: merge | ||
- name: Notify breaking dependencies automatically | ||
conditions: | ||
- author~=^dependabot(|-preview)\[bot\]$ | ||
- title~=from (?P<major>\d+).\d+.\d+ to (?!(?P=major).\d+.\d+) | ||
actions: | ||
comment: | ||
message: | | ||
This PR features a major change and requires further approval. | ||
request_reviews: | ||
users: | ||
- Snazzah |
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,32 @@ | ||
# Packages | ||
node_modules/ | ||
yarn.lock | ||
package-lock.json | ||
|
||
# Log files | ||
logs/ | ||
*.log | ||
|
||
# Authentication | ||
deploy/ | ||
|
||
# Miscellaneous | ||
.tmp/ | ||
.vscode/ | ||
scripts/ | ||
static/ | ||
docs/ | ||
|
||
# NPM ignore | ||
.eslintignore | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.editorconfig | ||
.prettierrc | ||
.github/ | ||
.dependabot/ | ||
test/ | ||
testing/ | ||
tsconfig.json | ||
.husky/ |
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 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"endOfLine": "lf", | ||
"trailingComma": "none", | ||
"printWidth": 110 | ||
} |
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,12 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
## [1.0.0] - 2021-02-13 | ||
- Initial release. | ||
|
||
[Unreleased]: https://github.com/Dexare/Dexare/compare/v0.1.0...HEAD | ||
[1.0.0]: https://github.com/Dexare/Dexare/releases/tag/v0.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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 Snazzah | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,13 @@ | ||
<div align="center"> | ||
|
||
# Voltare | ||
|
||
[![NPM version](https://img.shields.io/npm/v/voltare?maxAge=3600?&color=2ed573)](https://www.npmjs.com/package/voltare) [![NPM downloads](https://img.shields.io/npm/dt/voltare?maxAge=3600&color=2ed573)](https://www.npmjs.com/package/voltare) [![ESLint status](https://github.com/Dexare/Dexare/Voltare/ESLint/badge.svg)](https://github.com/Dexare/Voltare/actions?query=workflow%3A%22ESLint%22) | ||
|
||
</div> | ||
|
||
Voltare is a version of the [Dexare](https://github.com/Dexare/Dexare) framework for [Revolt](https://revolt.chat). Easily make modules that depend on others or overwrite their functions. | ||
|
||
> Note: This is still in development. As [better-revolt-js](https://github.com/TheMaestro0/better-revolt.js) is still new, this framework may have some bugs. | ||
Documentation is unavailable at the moment, but some of the core features of Voltare is shown in the [Documentation for Dexare](https://github.com/Dexare/Dexare/wiki). |
Oops, something went wrong.