Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Divergence entre npm run format et npm run lint #191

Open
1 task
bonjourmauko opened this issue Nov 28, 2023 · 1 comment
Open
1 task

Divergence entre npm run format et npm run lint #191

bonjourmauko opened this issue Nov 28, 2023 · 1 comment
Labels
build Tout ce qui touche au build et CI

Comments

@bonjourmauko
Copy link
Contributor

bonjourmauko commented Nov 28, 2023

Depends on #64

Amélioration technique

Contexte

Lorsque j'utilise npm run format et npm run lint,
je m'attends à ce qu'il n'ait pas de diff.

npm run format
git add -p
npm run lint
git diff | pbcopy

(rien)

Problème rencontré par les utilisateurs

Ce n'est pas le cas :

npm run format
git add -p
npm run lint
git diff | pbcopy
diff --git a/src/views/bouquets/BouquetEditView.vue b/src/views/bouquets/BouquetEditView.vue
index 82e1447..663fe6e 100644
--- a/src/views/bouquets/BouquetEditView.vue
+++ b/src/views/bouquets/BouquetEditView.vue
@@ -517,8 +517,8 @@ onMounted(() => {
               ]"
             >
               <DsfrAccordion
-                :title="datasetProperties.title"
                 :id="datasetProperties.id"
+                :title="datasetProperties.title"
                 :expanded-id="datasetProperties.id"
                 @expand="datasetProperties.id = $event"
               >
@@ -650,8 +650,8 @@ onMounted(() => {
               ]"
             >
               <DsfrAccordion
-                :title="datasetProperties.title"
                 :id="datasetProperties.id"
+                :title="datasetProperties.title"
                 :expanded-id="datasetProperties.id"
                 @expand="datasetProperties.id = $event"
               >

Proposition de solution au problème

Scénarios possibles (pas excluants)

Définition de terminé

  • Qu'il n'y ait pas de diff
@bonjourmauko bonjourmauko added the build Tout ce qui touche au build et CI label Nov 28, 2023
@abulte
Copy link
Contributor

abulte commented Nov 28, 2023

Je ferais:

  1. Désactiver l'option --fix dans package.json ASAP
  2. Fix erreurs de linting #64 quand le temps le permet
  3. Intégrer npm run lint au pre-commit hook

@streino streino changed the title build(npm): divergence entre npm run format et npm run lint Divergence entre npm run format et npm run lint Feb 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build Tout ce qui touche au build et CI
Projects
None yet
Development

No branches or pull requests

2 participants