Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dy0gu committed Nov 28, 2023
0 parents commit 35559cb
Show file tree
Hide file tree
Showing 24 changed files with 7,041 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@next/next/recommended",
"prettier"
],
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error"
],
"@typescript-eslint/no-explicit-any": [
"error"
]
}
}
Binary file added .github/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Testing

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
Build:
runs-on: ubuntu-latest

steps:
- name: Clone
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: latest

- name: Install required packages
run: npm install

- name: Run
run: npm run build
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Dependencies
/node_modules
/.pnp
.pnp.js

# Testing
/test
/coverage

# Build / Production
/build
/.next/
/out/
tsconfig.tsbuildinfo

# Misc
.DS_Store
*.pem
next-env.d.ts

# Debug / Log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Environment
.env.*
.env/
env/

# IDE
.idea
.vscode
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"trailingComma": "all",
"printWidth": 80,
"semi": true,
"tabWidth": 4,
"singleQuote": false,
"useTabs": true
}
12 changes: 12 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": [
"stylelint-config-standard"
],
"ignoreFiles": [
"**/*.tsx",
"**/*.jsx"
],
"rules": {
"at-rule-no-unknown": null
}
}
Loading

0 comments on commit 35559cb

Please sign in to comment.