Skip to content

Commit

Permalink
main ui + get meetings
Browse files Browse the repository at this point in the history
  • Loading branch information
b-a-a-s committed May 8, 2023
1 parent f8844b8 commit cfeaa43
Show file tree
Hide file tree
Showing 74 changed files with 6,556 additions and 182 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

components-lib
14 changes: 14 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.cache
.next
.db
.history
out
node_modules
package.json
package-lock.json
yarn.lock
public
*.md
*.mdx
.env*
!.env.validator.js
13 changes: 13 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"printWidth": 140,
"endOfLine": "lf",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"arrowParens": "always",
"importOrder": ["^react$", "^(?!^react$|^@/|^[./]).*", "^@/(.*)$", "^[./]"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderParserPlugins": ["jsx", "typescript"]
}
Loading

0 comments on commit cfeaa43

Please sign in to comment.