Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6a071ed
Add aliases to run tests locally
gino-m Dec 2, 2025
321c11c
Merge branch 'master' of https://github.com/google/ground-platform in…
gino-m Dec 2, 2025
d4a816e
Update assetLinks warning
gino-m Dec 2, 2025
bb610f3
Update assetLinks warning
gino-m Dec 2, 2025
3c07d8d
Merge branch 'master' of https://github.com/google/ground-platform in…
gino-m Dec 11, 2025
21577c4
Fix tests
gino-m Dec 11, 2025
77960b1
Lint fix
gino-m Dec 11, 2025
2845684
Remove debug log statement
gino-m Dec 11, 2025
10688c7
Uncomment disabled post-condition
gino-m Dec 11, 2025
729d267
Update copyright year
gino-m Dec 11, 2025
7cc1bd3
Remove thinking comments
gino-m Dec 11, 2025
c8f08ba
Update copyright year
gino-m Dec 11, 2025
ca0ebef
Reformat
gino-m Dec 11, 2025
b36299f
Handle error state properly
gino-m Dec 11, 2025
73464ff
Add CR
gino-m Dec 11, 2025
b32ca0a
Update copyright
gino-m Dec 11, 2025
ff0ab6e
Remove drawing tools logic and other unnecessary flags
gino-m Dec 11, 2025
46aaa82
Fix formatting
gino-m Dec 11, 2025
89e371a
Formatting
gino-m Dec 11, 2025
d875522
Merge branch 'master' of https://github.com/google/ground-platform in…
gino-m Dec 11, 2025
721c5a6
Remove blank lines between imports
gino-m Dec 11, 2025
2e034ec
Merge branch 'master' into gino-m/2289/refactor-router
gino-m Dec 12, 2025
5038923
Refactor WIP
gino-m Dec 15, 2025
de8ba58
Fix runtime errors
gino-m Dec 15, 2025
795bbd0
Fix broken test
gino-m Dec 15, 2025
77eac00
Lint fix
gino-m Dec 15, 2025
a069b74
Reorganize components
gino-m Dec 15, 2025
3e0445d
Lint fix
gino-m Dec 15, 2025
613709a
Add spaces between curly brackets to functions/
gino-m Dec 15, 2025
79e3504
Add spaces inside curly brackets in web/
gino-m Dec 15, 2025
4ab9072
Use spaces in curly brackets in lib/
gino-m Dec 15, 2025
7de9a5c
Fix lint error
gino-m Dec 15, 2025
f47edfb
Fix linting of e2e-tests
gino-m Dec 15, 2025
9669eb4
Remove trailing spaces
gino-m Dec 15, 2025
0b2841a
Update deprecated linit rule names
gino-m Dec 15, 2025
e6429d1
Merge branch 'master' of https://github.com/google/ground-platform in…
gino-m Dec 16, 2025
22a843b
Merge branch 'master' into gino-m/2309/curly-spaces
gino-m Dec 16, 2025
bb43f7c
Fix formatting
gino-m Dec 16, 2025
6d3e11a
Move SideNavMode and fix build errors
gino-m Dec 16, 2025
a25fd32
Lint fix
gino-m Dec 16, 2025
841f283
Consolidate eslintignore files
gino-m Dec 16, 2025
a04f634
Refactor lint and ts config for web/
gino-m Dec 16, 2025
06586f7
Refactor ts and lint config for functions/
gino-m Dec 16, 2025
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
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
**/*.json
**/build
**/dist
**/generated
**/node_modules
55 changes: 55 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"extends": [
"./node_modules/gts",
"plugin:import/recommended",
"plugin:import/typescript"
],
"env": {
"jasmine": true
},
"root": true,
"rules": {
"eqeqeq": ["error", "always", {"null": "ignore"}],
"node/no-unpublished-import": "off",
"node/no-unpublished-require": "off",
"@typescript-eslint/no-unused-vars": ["off", { "varsIgnorePattern": "_.*" }],
"object-curly-spacing": ["error", "always"],
"sort-imports": [
"error",
{
"ignoreCase": false,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"],
"allowSeparatedGroups": true
}
],
"import/no-unresolved": "error",
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"internal",
["sibling", "parent"],
"index",
"unknown"
],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
]
},
"overrides": [
{
"files": ["*.ts"],
"extends": [
"plugin:prettier/recommended"
]
}
]
}
4 changes: 4 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
...require('gts/.prettierrc.json'),
bracketSpacing: true
}
1 change: 0 additions & 1 deletion e2e-tests/.eslintignore

This file was deleted.

10 changes: 8 additions & 2 deletions e2e-tests/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"extends": "./node_modules/gts/",
"extends": "./node_modules/gts",
"env": {
"jasmine": true
},
"parser": "@typescript-eslint/parser",
"root": true,
"rules": {
"node/no-unpublished-import": ["error", {
"allowModules": ["jasmine"]
}],
"eqeqeq": ["error", "always", {"null": "ignore"}]
"eqeqeq": ["error", "always", {"null": "ignore"}],
"object-curly-spacing": ["error", "always"]
}
}
4 changes: 4 additions & 0 deletions e2e-tests/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
...require('gts/.prettierrc.json'),
bracketSpacing: true
}
Loading
Loading