Skip to content

Commit

Permalink
Merge pull request #85 from tritonuas/feat/connection-page-design
Browse files Browse the repository at this point in the history
Connections Page Rough Design
  • Loading branch information
Tyler-Lentz authored Nov 8, 2023
2 parents 1cac53a + 57803a3 commit 6233dad
Show file tree
Hide file tree
Showing 35 changed files with 1,016 additions and 550 deletions.
13 changes: 13 additions & 0 deletions houston/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ module.exports = {
{ allowConstantExport: true },
],

// Make an unused variable a warning, and
// Ignore unused variable warning if the
// variable begins with underscore
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn", // or "error"
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],

// suppress errors that require React to be imported (not necessary in React versions >= v17.0)
'react/react-in-jsx-scope': 'off',
'react/jsx-uses-react': 'off',
Expand Down
19 changes: 9 additions & 10 deletions houston/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<!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>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Houston</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 6233dad

Please sign in to comment.