Skip to content

Commit

Permalink
Merge pull request #14 from OR13/feat/v2
Browse files Browse the repository at this point in the history
v2
  • Loading branch information
OR13 authored Oct 23, 2022
2 parents 14da8e4 + cf41eff commit 5068723
Show file tree
Hide file tree
Showing 193 changed files with 16,069 additions and 41,955 deletions.
20 changes: 19 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
{
"extends": "next/core-web-vitals"
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"prettier",
"next/core-web-vitals"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {}
}
13 changes: 0 additions & 13 deletions .github/FUNDING.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/create-credential.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/docs.yml

This file was deleted.

22 changes: 11 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
node_modules
.pnp
.pnp.js

# testing
/coverage
coverage

# next.js
/.next/
/out/
.next/
out/

# production
/build
build

# misc
.DS_Store
Expand All @@ -23,14 +23,14 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
.env*.local

# vercel
.vercel

.env
# typescript
*.tsbuildinfo
next-env.d.ts
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "none"
}
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"editor.formatOnSave": true
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
"editor.formatOnPaste": false, // required
"editor.formatOnType": false, // required
"editor.formatOnSave": true, // optional
"editor.formatOnSaveMode": "file", // required to format on save
"files.autoSave": "onFocusChange" // optional but recommended
}
Loading

1 comment on commit 5068723

@vercel
Copy link

@vercel vercel bot commented on 5068723 Oct 23, 2022

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

didmeme – ./

didmeme-git-main-or-13.vercel.app
didmeme.vercel.app
didme.me
didmeme-or-13.vercel.app

Please sign in to comment.