Bug 38524 - Add support for Vue.js and TypeScript to ESLint config to be able to actually enforce coding guideline JS8
Summary: Add support for Vue.js and TypeScript to ESLint config to be able to actually...
Status: Pushed to main
Alias: None
Product: Koha
Classification: Unclassified
Component: Architecture, internals, and plumbing (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal
Assignee: Victor Grousset/tuxayo
QA Contact: Testopia
URL:
Keywords:
Depends on: 38167
Blocks:
  Show dependency treegraph
 
Reported: 2024-11-24 18:52 UTC by Victor Grousset/tuxayo
Modified: 2025-02-04 02:29 UTC (History)
3 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
This updates the configuration for ESLint (used for finding JavaScript coding errors) so that ESLint can be used to check Vue (.vue) and TypesScript (.ts) files. This will help with enforcing coding guideline JS8: Follow guidelines set by ESLint (https://wiki.koha-community.org/wiki/Coding_Guidelines#JS8:_Follow_guidelines_set_by_ESLint).
Version(s) released in:
25.05.00
Circulation function:


Attachments
Bug 38524: Enable ESLint for .ts and .vue files (4.93 KB, patch)
2024-11-25 00:11 UTC, Victor Grousset/tuxayo
Details | Diff | Splinter Review
Bug 38524: [DO NOT PUSH] yarn.lock changes (28.47 KB, patch)
2024-11-25 00:11 UTC, Victor Grousset/tuxayo
Details | Diff | Splinter Review
Bug 38524: Enable ESLint for .ts and .vue files (5.00 KB, patch)
2025-01-07 16:15 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 38524: Enable ESLint for .ts and .vue files (5.07 KB, patch)
2025-01-16 11:26 UTC, Jonathan Druart
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Victor Grousset/tuxayo 2024-11-24 18:52:01 UTC
Currently ESLint doesn't try to check .vue and .ts files.
Comment 1 Victor Grousset/tuxayo 2024-11-25 00:11:07 UTC
Created attachment 174963 [details] [review]
Bug 38524: Enable ESLint for .ts and .vue files

Test plan:
1. Apply only bug 38167 and it's dependency (assuming they are not in main)
2. Restart KTD or run
     sudo yarn install --modules-folder /kohadevbox/node_modules
3. Run the following and see that it doesn't lint
     eslint t/cypress/integration/AdditionalFields_spec.ts
     eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue
4. Apply the patches of this ticket
5. restart KTD
   (it tests that the provisionning works well to get all
   the JS libs)
6. Run the following and see that it lints
     eslint t/cypress/integration/AdditionalFields_spec.ts
     eslint ./t/cypress/integration/ERM/DataProviders_spec.ts
     eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts
     eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue
     eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue

Various files tested here give an idea of the output, feel free to try others.
And report stuff that should obviously be silenced due to making too much
noise and having low value or being contrary to our current practices.
Non obvious stuff to fix might be put in a follow-up ticket.

---------

This was removed from config:
indent: ["error", 4],

Because this check was finding it redundant:
npx eslint-config-prettier koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue
check which is documented here:
https://github.com/prettier/eslint-config-prettier?tab=readme-ov-file#cli-helper-tool

To doubled check, I sabotaged some indentation in a .js/.ts section on these files
koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue
koha-tmpl/intranet-tmpl/prog/js/ajax.js
And without `indent: ["error", 4]` the prettier rule was still reporting the issue.
And with `indent: ["error", 4]` the issue was reported twice.
This looks enough to confirm it's redundant to keep it.

----

For the same reason as above, the following was removed:
semi: ["error", "always"],
tested by removing a semicolon in
koha-tmpl/intranet-tmpl/prog/js/ajax.js
t/cypress/integration/Auth/csrf.ts

----

This was removed:
"linebreak-style": ["error", "unix"],

Because it's the default of prettier
https://prettier.io/docs/en/options.html#end-of-line
Comment 2 Victor Grousset/tuxayo 2024-11-25 00:11:11 UTC
Created attachment 174964 [details] [review]
Bug 38524: [DO NOT PUSH] yarn.lock changes
Comment 3 Victor Grousset/tuxayo 2024-11-25 02:42:16 UTC
Things that look interesting by I'm not sure if lint rules should be changed or not:
eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/AdditionalFieldsDisplay.vue
  33:9   warning  Prop "resource_type" is not in camelCase                             vue/prop-name-casing
  34:9   warning  Prop "additional_field_values" is not in camelCase                   vue/prop-name-casing
Comment 4 Victor Grousset/tuxayo 2024-11-25 04:43:45 UTC
Bonus of this: includes also prettier (guideline JS14)

As for "to be able to actually enforce coding guideline JS8".
There is a fair amount of tuning and deliberation before being to be able to use eslint for .vue and .ts like we are supposed to do for .js .

So even with these patches we might want to amend JS8 to clarify that while Typescript and Vue files are covered by it, there are too much checks that are not relevant for us or pending work on clarifying our guidelines. So we can't by default ask everything to be followed.
Comment 5 Victor Grousset/tuxayo 2024-12-13 05:29:11 UTC
> As for "to be able to actually enforce coding guideline JS8".
> There is a fair amount of tuning and deliberation before
> being to be able to use eslint for .vue and .ts like we
> are supposed to do for .js .

Reformulation: it raises a lot of issues in our ts and vue files. So the config doesn't match out recent practices and both need to be reconciled because it's not clear which of the two is right for us.
Comment 6 David Nind 2025-01-02 21:54:52 UTC
The patch no longer applies - sha1/fake ancestor error:

Bug 38524 - Add support for Vue.js and TypeScript to ESLint config to be able to actually enforce coding guideline JS8

174963 - Bug 38524: Enable ESLint for .ts and .vue files
174964 - Bug 38524: [DO NOT PUSH] yarn.lock changes

Apply? [(y)es, (n)o, (i)nteractive] y
Applying: Bug 38524: Enable ESLint for .ts and .vue files
Applying: Bug 38524: [DO NOT PUSH] yarn.lock changes
error: sha1 information is lacking or useless (yarn.lock).
error: could not build fake ancestor
Patch failed at 0001 Bug 38524: [DO NOT PUSH] yarn.lock changes

Notes for applying dependencies
===============================

When applying 38617 and dependencies, do them iteratively and comment out the [DO NOT PUSH] patches for the yarn lock changes.

Otherwise, the patches fail to apply when you get to 38770.
Comment 7 Victor Grousset/tuxayo 2025-01-04 08:30:51 UTC
It is simply not possible to have this applying and Bug 38770 alone at the same time. Because a dependency of this (Bug 38149 but I'm not sure) conflicts with 38770 on yarn.lock. So solving the conflicts for the case of 38770 alone and the case for having 38770 in the dependency tree is not possible at the same it.

Whatever, let's try to not have any yarn.lock patch.
yarn install is ran in the test plans. And I don't think that even help using the sandboxes. It's just to have a clean working directory I guess?
Comment 8 Martin Renvoize (ashimema) 2025-01-07 16:15:53 UTC
Created attachment 176206 [details] [review]
Bug 38524: Enable ESLint for .ts and .vue files

Test plan:
1. Apply only bug 38167 and it's dependency (assuming they are not in main)
2. Restart KTD or run
     sudo yarn install --modules-folder /kohadevbox/node_modules
3. Run the following and see that it doesn't lint
     eslint t/cypress/integration/AdditionalFields_spec.ts
     eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue
4. Apply the patches of this ticket
5. restart KTD
   (it tests that the provisionning works well to get all
   the JS libs)
6. Run the following and see that it lints
     eslint t/cypress/integration/AdditionalFields_spec.ts
     eslint ./t/cypress/integration/ERM/DataProviders_spec.ts
     eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts
     eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue
     eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue

Various files tested here give an idea of the output, feel free to try others.
And report stuff that should obviously be silenced due to making too much
noise and having low value or being contrary to our current practices.
Non obvious stuff to fix might be put in a follow-up ticket.

---------

This was removed from config:
indent: ["error", 4],

Because this check was finding it redundant:
npx eslint-config-prettier koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue
check which is documented here:
https://github.com/prettier/eslint-config-prettier?tab=readme-ov-file#cli-helper-tool

To doubled check, I sabotaged some indentation in a .js/.ts section on these files
koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue
koha-tmpl/intranet-tmpl/prog/js/ajax.js
And without `indent: ["error", 4]` the prettier rule was still reporting the issue.
And with `indent: ["error", 4]` the issue was reported twice.
This looks enough to confirm it's redundant to keep it.

----

For the same reason as above, the following was removed:
semi: ["error", "always"],
tested by removing a semicolon in
koha-tmpl/intranet-tmpl/prog/js/ajax.js
t/cypress/integration/Auth/csrf.ts

----

This was removed:
"linebreak-style": ["error", "unix"],

Because it's the default of prettier
https://prettier.io/docs/en/options.html#end-of-line

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Comment 9 David Nind 2025-01-08 11:34:11 UTC
I had a go at testing (so that Martin's signoff could count as QA).

However, after step 5 in the test plan (shutting down KTD and starting it up again) I get this error when trying to eslint any of the files:

eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue

Oops! Something went wrong! :(

ESLint: 9.17.0

TypeError: Key "languageOptions": Key "globals": Global "AudioWorkletGlobalScope " has leading or trailing whitespace.
    at new Config (/kohadevbox/node_modules/eslint/lib/config/config.js:195:19)
    at [finalizeConfig] (/kohadevbox/node_modules/eslint/lib/config/flat-config-array.js:216:16)
    at FlatConfigArray.getConfigWithStatus (/kohadevbox/node_modules/@eslint/config-array/dist/cjs/index.cjs:1178:55)
    at FlatConfigArray.getConfig (/kohadevbox/node_modules/@eslint/config-array/dist/cjs/index.cjs:1196:15)
    at /kohadevbox/node_modules/eslint/lib/eslint/eslint.js:764:40
    at async Promise.all (index 0)
    at async ESLint.lintFiles (/kohadevbox/node_modules/eslint/lib/eslint/eslint.js:759:25)
    at async Object.execute (/kohadevbox/node_modules/eslint/lib/cli.js:498:23)
    at async main (/kohadevbox/node_modules/eslint/bin/eslint.js:158:22)
Comment 10 Jonathan Druart 2025-01-16 08:47:38 UTC
I don't understand why we are not simply using prettier, why add support for ESLint?

On bug 38664 I added support to .tt, and suggested a tidy.pl script that will take care of tidying everything.

With the config in .prettierrc.js for .vue, .js, .tt.

What we do already.

Now we will have to add the same config in another file?

Please detail, it's not clear to me why we would need that at all.
Comment 11 Jonathan Druart 2025-01-16 11:26:43 UTC
Created attachment 176642 [details] [review]
Bug 38524: Enable ESLint for .ts and .vue files

Test plan:
1. Apply only bug 38167 and it's dependency (assuming they are not in main)
2. Restart KTD or run
     sudo yarn install --modules-folder /kohadevbox/node_modules
3. Run the following and see that it doesn't lint
     eslint t/cypress/integration/AdditionalFields_spec.ts
     eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue
4. Apply the patches of this ticket
5. restart KTD
   (it tests that the provisionning works well to get all
   the JS libs)
6. Run the following and see that it lints
     eslint t/cypress/integration/AdditionalFields_spec.ts
     eslint ./t/cypress/integration/ERM/DataProviders_spec.ts
     eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts
     eslint koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue
     eslint ./koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue

Various files tested here give an idea of the output, feel free to try others.
And report stuff that should obviously be silenced due to making too much
noise and having low value or being contrary to our current practices.
Non obvious stuff to fix might be put in a follow-up ticket.

---------

This was removed from config:
indent: ["error", 4],

Because this check was finding it redundant:
npx eslint-config-prettier koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue
check which is documented here:
https://github.com/prettier/eslint-config-prettier?tab=readme-ov-file#cli-helper-tool

To doubled check, I sabotaged some indentation in a .js/.ts section on these files
koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue
koha-tmpl/intranet-tmpl/prog/js/ajax.js
And without `indent: ["error", 4]` the prettier rule was still reporting the issue.
And with `indent: ["error", 4]` the issue was reported twice.
This looks enough to confirm it's redundant to keep it.

----

For the same reason as above, the following was removed:
semi: ["error", "always"],
tested by removing a semicolon in
koha-tmpl/intranet-tmpl/prog/js/ajax.js
t/cypress/integration/Auth/csrf.ts

----

This was removed:
"linebreak-style": ["error", "unix"],

Because it's the default of prettier
https://prettier.io/docs/en/options.html#end-of-line

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Comment 12 Katrin Fischer 2025-01-16 14:57:05 UTC
Pushed for 25.05!

Well done everyone, thank you!