-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
78 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
// https://biomejs.dev/guides/configure-biome/ | ||
|
||
// Reference local dependency version. | ||
"$schema": "frontend/node_modules/@biomejs/biome/configuration_schema.json", | ||
|
||
"files": { | ||
// For now, only include frontend files. | ||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"], | ||
// Match files, not folders. | ||
"ignore": [ | ||
"**/*.json", | ||
"**/*.jsonc", | ||
"**/*.config.ts", | ||
"**/src/routes/backend.ts", // Autogenerated file. | ||
"**/build/static/**/*", // Build files from frontend. | ||
"**/dist/assets/**/*", // Build files from frontend. | ||
"**/.history/**/*", // VSCode extension. | ||
"**/staticroot/**/*", // Django static files. | ||
"**/static/**/*", // Django static files. | ||
"**/.venv/**/*" | ||
] | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true | ||
} | ||
}, | ||
"formatter": { | ||
"indentStyle": "space", | ||
"lineWidth": 120 | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "single" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ node_modules | |
.git | ||
Dockerfile | ||
.dockerignore | ||
.history |
541 changes: 0 additions & 541 deletions
541
frontend/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-4.5.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
/* | ||
Biome currently doesn't have a 'configPath' setting in VSCode. | ||
It only recognises config located in workspace root. | ||
Our config is therefore located at root of repo, | ||
and extended here to support both directories (including docker container). | ||
*/ | ||
"extends": ["../biome.jsonc"], // Available in container through docker-compose volume. | ||
"$schema": "node_modules/@biomejs/biome/configuration_schema.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters