Skip to content

Commit

Permalink
more init work
Browse files Browse the repository at this point in the history
  • Loading branch information
yiqu committed Jun 13, 2023
1 parent 0278d70 commit 09e14b9
Show file tree
Hide file tree
Showing 119 changed files with 16,195 additions and 74 deletions.
5 changes: 5 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
VITE_APP_TITLE='Movie Rank'
VITE_APP_VERSION='1.0.0'
VITE_POKEAPI_URL='https://pokeapi.co/api/v2'
VITE_GITHUB_REPO_URL="https://github.com/yiqu/vite-react"
VITE_CIRCLE_CI_URL="https://app.circleci.com/pipelines/github/yiqu/vite-react"
5 changes: 5 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
VITE_APP_TITLE='Movie Rank'
VITE_APP_VERSION='1.0.0'
VITE_POKEAPI_URL='https://pokeapi.co/api/v2'
VITE_GITHUB_REPO_URL="https://github.com/yiqu/vite-react"
VITE_CIRCLE_CI_URL="https://app.circleci.com/pipelines/github/yiqu/vite-react"
5 changes: 5 additions & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
VITE_APP_TITLE='Movie Rank'
VITE_APP_VERSION='1.0.1'
VITE_POKEAPI_URL='https://pokeapi.co/api/v2'
VITE_GITHUB_REPO_URL="https://github.com/yiqu/vite-react"
VITE_CIRCLE_CI_URL="https://app.circleci.com/pipelines/github/yiqu/vite-react"
39 changes: 37 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,14 +1,49 @@
module.exports = {
env: { browser: true, es2020: true },
env: { browser: true, es2020: true, node: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
"react-app",
"plugin:react/recommended"
],
parser: '@typescript-eslint/parser',
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
plugins: ['react-refresh'],
plugins: ['react-refresh', "unused-imports"],
rules: {
'react-refresh/only-export-components': 'warn',
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "warn",
"semi": [
1,
"always"
],
"react/jsx-curly-spacing": [
1,
"always"
],
"no-use-before-define": [
0,
{
"functions": false
}
],
"react/jsx-indent": [
1,
2
],
"space-in-parens": [
1,
"never"
],
"no-const-assign": [
2
],
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "warn"
},
}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Movie Rank


[![CircleCI](https://circleci.com/gh/yiqu/react-dnd/tree/master.svg?style=svg)](https://circleci.com/gh/yiqu/react-dnd/tree/master)


## Preview
[Firebase](https://react-dnd.web.app/)

[Github Pages](https://yiqu.github.io/react-dnd/)
1 change: 1 addition & 0 deletions build/assets/index-621c1156.css

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions build/assets/index-84f6f557.js

Large diffs are not rendered by default.

Binary file added build/assets/poppins-all-300-normal-df046399.woff
Binary file not shown.
Binary file not shown.
Binary file added build/assets/poppins-all-500-normal-9ec8c55c.woff
Binary file not shown.
Binary file added build/assets/poppins-all-600-normal-952d2591.woff
Binary file not shown.
Binary file added build/assets/poppins-all-700-normal-282b1ac4.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/assets/roboto-all-300-normal-6d79427c.woff
Binary file not shown.
Binary file added build/assets/roboto-all-400-normal-e41533d5.woff
Binary file not shown.
Binary file added build/assets/roboto-all-500-normal-8f838c80.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
15 changes: 15 additions & 0 deletions build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Movie Rank</title>
<script type="module" crossorigin src="/assets/index-84f6f557.js"></script>
<link rel="stylesheet" href="/assets/index-621c1156.css">
</head>
<body>
<div id="root"></div>

</body>
</html>
1 change: 1 addition & 0 deletions build/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Movie Rank</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading

0 comments on commit 09e14b9

Please sign in to comment.