Initial setup of the Neptune frontend project, including Dockerfile, environment files, TypeScript configuration, and essential components. Added basic page structures for dashboard and wallet, and configured Tailwind CSS and postcss.
37 lines
650 B
JSON
37 lines
650 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
},
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git"
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"performance": {
|
|
"recommended": true,
|
|
"noDelete": "off"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "warn"
|
|
},
|
|
"complexity": {
|
|
"useLiteralKeys": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "tab",
|
|
"indentWidth": 2,
|
|
"lineWidth": 90
|
|
}
|
|
} |