Skip to content

Commit

Permalink
🚀 RELEASE: v1.3.0 Update
Browse files Browse the repository at this point in the history
Merge pull request #44 from warengonzaga/dev
  • Loading branch information
warengonzaga authored Feb 10, 2023
2 parents 6b3d5a9 + bc1b354 commit 7030767
Show file tree
Hide file tree
Showing 38 changed files with 4,516 additions and 24,653 deletions.
19 changes: 19 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Yarn
.yarn
.pnp.*
.yarnrc.yml
yarn-error.log

# Github
.github

# VSCode user-specific settings
.vscode

# Build artifacts
dist

# Misc
.dccache
.parcel-cache
.gitpod.yml
25 changes: 25 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"node": true,
"browser": true,
"es2021": true
},
"extends": ["google"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"linebreak-style": ["error", "unix"],
"quote-props": ["error", "as-needed"],
"quotes": [
"error",
"single",
{ "avoidEscape": true, "allowTemplateLiterals": true }
],
"object-curly-spacing": ["error", "always"],
"indent": ["error", 2, { "SwitchCase": 1 }],
"comma-dangle": ["error", "only-multiline"],
"no-mixed-spaces-and-tabs": "error"
}
}
6 changes: 0 additions & 6 deletions .github/FUNDING.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Support the author by using the funding links below
# Developed and maintained by Waren Gonzaga with the help of awesome contributors.

github: warengonzaga

# Your support means a lot to me to continue the development of open source project like this.
Binary file added .github/img/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed .github/img/demo.png
Binary file not shown.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push, pull_request]

jobs:
lint:
name: Check for codestyle issues
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 16

- name: Install dependencies
run: yarn install

- name: Check codestyle
run: yarn run check
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@
node_modules

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
yarn-error.log

# parceljs
.parcel-cache

# vscode user-specific settings
.vscode

# misc
preview-link.txt
dist/

# temp
.github/share.json
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/hydrogen
Loading

1 comment on commit 7030767

@vercel
Copy link

@vercel vercel bot commented on 7030767 Feb 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.