Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cecilia-sanare committed Feb 23, 2024
0 parents commit 19165e6
Show file tree
Hide file tree
Showing 41 changed files with 21,798 additions and 0 deletions.
148 changes: 148 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
---
env:
browser: true
es6: true
node: true
extends:
- prettier
- plugin:@next/next/recommended
parser: "@typescript-eslint/parser"
parserOptions:
sourceType: module
plugins:
- eslint-plugin-react
- "@typescript-eslint"
root: true
rules:
"@typescript-eslint/explicit-member-accessibility":
- 'off'
- accessibility: explicit
"@typescript-eslint/indent":
- error
- 4
- FunctionDeclaration:
parameters: first
FunctionExpression:
parameters: first
"@typescript-eslint/member-delimiter-style":
- 'off'
- multiline:
delimiter: none
requireLast: true
singleline:
delimiter: semi
requireLast: false
"@typescript-eslint/naming-convention":
- error
- selector: variable
format:
- camelCase
- UPPER_CASE
leadingUnderscore: forbid
trailingUnderscore: forbid
"@typescript-eslint/no-empty-function": 'off'
"@typescript-eslint/no-explicit-any": 'off'
"@typescript-eslint/no-inferrable-types": 'off'
"@typescript-eslint/no-require-imports": 'off'
"@typescript-eslint/no-shadow":
- error
- hoist: all
"@typescript-eslint/no-unused-expressions": error
"@typescript-eslint/no-var-requires": 'off'
"@typescript-eslint/prefer-namespace-keyword": 'off'
"@typescript-eslint/quotes":
- error
- single
"@typescript-eslint/semi":
- 'off'
- never
"@typescript-eslint/type-annotation-spacing": error
arrow-parens:
- 'off'
- always
brace-style:
- error
- 1tbs
comma-dangle: error
curly: 'off'
default-case: error
eol-last: 'off'
eqeqeq:
- error
- smart
guard-for-in: error
id-denylist: 'off'
id-match: 'off'
indent: 'off'
linebreak-style: 'off'
max-len:
- 'off'
- code: 140
new-parens: 'off'
newline-per-chained-call: 'off'
no-bitwise: error
no-caller: error
no-cond-assign: error
no-console:
- error
- allow:
- log
- warn
- dir
- timeLog
- assert
- clear
- count
- countReset
- group
- groupEnd
- table
- dirxml
- error
- groupCollapsed
- Console
- profile
- profileEnd
- timeStamp
- context
no-debugger: error
no-empty: 'off'
no-empty-function: 'off'
no-eval: error
no-extra-semi: 'off'
no-fallthrough: 'off'
no-irregular-whitespace: 'off'
no-multiple-empty-lines: 'off'
no-new-wrappers: error
no-redeclare: error
no-shadow: 'off'
no-trailing-spaces: error
no-underscore-dangle: 'off'
no-unused-expressions: 'off'
no-unused-labels: error
no-var: error
padded-blocks:
- 'off'
- blocks: never
- allowSingleLineBlocks: true
quote-props: 'off'
quotes: 'off'
radix: 'off'
react/jsx-curly-spacing: 'off'
react/jsx-equals-spacing: 'off'
react/jsx-tag-spacing:
- 'off'
- afterOpening: allow
closingSlash: allow
react/jsx-wrap-multilines: 'off'
semi: 'off'
space-before-function-paren: 'off'
space-in-parens:
- 'off'
- never
spaced-comment:
- error
- always
- markers:
- "/"

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

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"trailingComma": "none",
"semi": false
}
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"mikestead.dotenv",
"EditorConfig.EditorConfig"
]
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"editor.detectIndentation": false,
"search.exclude": {
"package-lock.json": true
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": [
"source.addMissingImports",
"source.fixAll.eslint"
],
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[scss]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
}
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Silvy

An app for creating, sharing, and collaborating on strats for XIV

## Getting Started

### Install

- Run `npm ci` in your terminal in the root of this project

### Running the app

- Run `npm run dev` in your terminal to start a development server/watcher. It will live reload on changes. Visit http://localhost:3000 (verify location in terminal)

[![Vercel][vercel-image]][vercel-url]

[vercel-image]: https://user-images.githubusercontent.com/9692284/192920193-fc967232-e0ba-425f-af63-c8eff3fe3216.png
[vercel-url]: https://vercel.com/?utm_source=rainbow-cafe&utm_campaign=oss
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>React Parcel</title>
</head>

<body>
<div id="root" />
<script src="./src/index.tsx" type="application/javascript"></script>
</body>

</html>
5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
Loading

0 comments on commit 19165e6

Please sign in to comment.