aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/.eslintrc.cjs
Commit message (Collapse)AuthorAge
* build: refactor frontend buildLibravatar Kristóf Marussy2023-04-09
| | | | | | | | | * Always write ESLint output to a file in addition to the console to make the lintFrontend task cacheable in Gradle (according to the output file). * Make sure frontend task inputs are declared properly for caching. * Make sure Typescript type checking is incremental. * Do not use @tsconfig, because both Vite and SonarScanner have problems with extending tsconfig files from Yarn PnP modules.
* refactor(frontend): split vite configLibravatar Kristóf Marussy2022-12-11
| | | | | Also introduces tsconfig.shared.json to keep track of source files used both and build time and in the browser.
* fix(frontend): mobx 6.7.0 typingLibravatar Kristóf Marussy2022-11-22
| | | | | | | Also bumps some dependencies and updates tsconfig.json The added workarounds should be remove once https://github.com/mobxjs/mobx/issues/3582 is resolved.
* feat(frontend): XState statechartsLibravatar Kristóf Marussy2022-09-06
| | | | | | | Expressing logic in statecharts for complex stateful behaviours should improve maintainability We use @xstate/cli to statically analyze statcharts before typechecking
* refactor(frontend): add eslint-plugin-mobxLibravatar Kristóf Marussy2022-08-27
|
* refactor(frontend): custom mutex implementationLibravatar Kristóf Marussy2022-08-26
| | | | Lets us track priorities of tasks without cancellation.
* fix(frontend): destroy service worker in dev modeLibravatar Kristóf Marussy2022-08-20
| | | | | If the application is run in both production and development mode on the same domain, make sure to clean up the production service worker.
* feat(frontend): custom search panelLibravatar Kristóf Marussy2022-08-17
| | | | Also improves editor styling (to enable panel styling).
* refactor(frontend): move from Webpack to ViteLibravatar Kristóf Marussy2022-08-12
Also overhaulds the building and linting for frontend assets.