You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This program is free software: you can redistribute it and/or modify
6
6
* it under the terms of the GNU General Public License as published by
@@ -23,18 +23,15 @@ module.exports = {
23
23
meta: {
24
24
type: "suggestion",
25
25
docs: {
26
-
description:
27
-
"Disallow autoplay and enforce preload='none' for video and audio elements",
26
+
description: "Avoid autoplay for videos and audio content",
28
27
category: "eco-design",
29
28
recommended: "warn",
30
29
},
31
30
messages: {
32
-
NoAutoplay:
33
-
"Avoid using autoplay attribute for <video> and <audio> elements. Reference to Rule RGESN 4.1 : https://www.arcep.fr/mes-demarches-et-services/entreprises/fiches-pratiques/referentiel-general-ecoconception-services-numeriques.html",
34
-
EnforcePreloadNone:
35
-
"Set preload='none' for <video> and <audio> elements. Reference to Rule RGESN 4.1 : https://www.arcep.fr/mes-demarches-et-services/entreprises/fiches-pratiques/referentiel-general-ecoconception-services-numeriques.html",
36
-
NoAutoplay_EnforcePreloadNone:
37
-
"Avoid using autoplay attribute and set preload='none' for <video> and <audio> elements. Reference to Rule RGESN 4.1 : https://www.arcep.fr/mes-demarches-et-services/entreprises/fiches-pratiques/referentiel-general-ecoconception-services-numeriques.html ",
31
+
NoAutoplay: "Avoid autoplay for video and audio elements.",
32
+
EnforcePreloadNone: "Set preload='none' for video and audio elements.",
33
+
NoAutoplayAndEnforcePreloadNone:
34
+
"Avoid autoplay and set preload='none' for video and audio elements.",
0 commit comments