Skip to content

Commit

Permalink
build: clean up dependencies and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ZL-Asica committed Nov 26, 2024
1 parent 2d31646 commit 54a7172
Show file tree
Hide file tree
Showing 9 changed files with 900 additions and 845 deletions.
12 changes: 4 additions & 8 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
import globals from 'globals';

import { zlAsicaTsReactConfig } from 'eslint-config-zl-asica';

export default [
...zlAsicaTsReactConfig,
{
ignores: ['vite-env.d.ts', 'prettier.config.cjs', 'eslint.config.mjs'],
},
{
files: ['**/*.{ts,tsx}'],
ignores: ['vite-env.d.ts'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
project: './tsconfig.eslint.json',
projectService: true,
project: './tsconfig.app.json',
},
},
rules: {
'unicorn/prevent-abbreviations': 'off',
'unicorn/filename-case': 'off',
'unicorn/expiring-todo-comments': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'unicorn/prefer-string-replace-all': 'off',
},
Expand Down
14 changes: 9 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
<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"
Expand All @@ -15,6 +10,15 @@
name="robots"
content="noindex, nofollow, noarchive"
/>
<link
rel="icon"
type="image/svg+xml"
href="/vite.svg"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<title>OpenHands</title>
</head>
<body>
Expand Down
Loading

0 comments on commit 54a7172

Please sign in to comment.