Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions web/.eslintrc.json

This file was deleted.

8 changes: 8 additions & 0 deletions web/.oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"sortTailwindcss": true
}
16 changes: 16 additions & 0 deletions web/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"react",
"react-perf",
"nextjs",
"jsx-a11y",
"import",
"typescript",
"oxc"
],
"categories": {
"correctness": "error"
},
"ignorePatterns": [".next/**", "next-env.d.ts"]
}
6 changes: 0 additions & 6 deletions web/.prettierignore

This file was deleted.

6 changes: 0 additions & 6 deletions web/.prettierrc

This file was deleted.

9 changes: 0 additions & 9 deletions web/eslint.config.mjs

This file was deleted.

26 changes: 9 additions & 17 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,24 @@
"name": "heimdall",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "PORT=4000 next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"prettier": "prettier --write .",
"prettier-fix": "prettier --write --ignore-path .gitignore src/**/*",
"prettier-check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0 --fix",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "oxlint",
"lint-fix": "oxlint --fix",
"format": "oxfmt --check .",
"get-types": "pnpm update @patterninc/react-ui@latest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@patterninc/react-ui": "^5.0.3",
"@patterninc/react-ui": "^5.0.8",
"@tanstack/react-query": "^5.66.11",
"@tanstack/react-query-devtools": "^5.66.11",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"next": "^16.1.6",
"next": "^16.2.9",
"nuqs": "^2.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
Expand All @@ -39,15 +35,11 @@
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9",
"eslint-config-next": "^16.0.10",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
Comment thread
gauravwarale marked this conversation as resolved.
"postcss": "^8",
"prettier": "^3.5.2",
"prettier-plugin-sort-json": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.11",
"typescript": "^5"
}
},
"packageManager": "pnpm@10.28.2"
}
Loading
Loading