Skip to content

Commit 7fcdfe8

Browse files
committed
chore: Mettre à jour les dépendances.
1 parent 5293ed3 commit 7fcdfe8

25 files changed

Lines changed: 1078 additions & 368 deletions

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Steps to reproduce the behavior:
3030
### Environment
3131

3232
- Cast Kodi version<!-- e.g. 7.0.0 -->:
33-
- Browser version<!-- e.g. Chrome 109.0.5414.74, Firefox 109.0 -->:
33+
- Browser version<!-- e.g. Chrome 110.0.5481.100, Firefox 110.0 -->:
3434
- Kodi version<!-- e.g. 19.5 -->:
35-
- Kodi add-on version (if appropriate)<!-- e.g. YouTube 6.8.24+matrix.1 -->:
35+
- Kodi add-on version (if appropriate)<!-- e.g. YouTube 6.8.25+matrix.1 -->:
3636

3737
### Additional context
3838

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ assignees: ''
1919
### Environment
2020

2121
- Cast Kodi version<!-- e.g. 7.0.0 -->:
22-
- Browser version<!-- e.g. Chrome 109.0.5414.74, Firefox 109.0 -->:
22+
- Browser version<!-- e.g. Chrome 110.0.5481.100, Firefox 110.0 -->:
2323
- Kodi version<!-- e.g. 19.5 -->:
24-
- Kodi add-on version (if appropriate)<!-- e.g. YouTube 6.8.24+matrix.1 -->:
24+
- Kodi add-on version (if appropriate)<!-- e.g. YouTube 6.8.25+matrix.1 -->:
2525

2626
### Additional context
2727

.metalint/addons-linter.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
maxManifestVersion: 3,
39
};

.metalint/eslint.config.js

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
plugins: [
39
"array-func",
@@ -310,7 +316,7 @@ export default {
310316
"keyword-spacing": 2,
311317
"line-comment-position": 2,
312318
"linebreak-style": 2,
313-
"lines-around-comment": 2,
319+
"lines-around-comment": [2, { afterHashbangComment: true }],
314320
"lines-between-class-members": 2,
315321
"max-len": 1,
316322
"max-statements-per-line": [2, { max: 2 }],
@@ -448,7 +454,11 @@ export default {
448454
// les imports ne sont pas gérés.
449455
// https://github.com/import-js/eslint-plugin-import/issues/2673
450456
"import/newline-after-import": [2, { considerComments: false }],
451-
"import/no-anonymous-default-export": 2,
457+
"import/no-anonymous-default-export": [2, {
458+
allowArray: true,
459+
allowCallExpression: false,
460+
allowObject: true,
461+
}],
452462
"import/no-default-export": 0,
453463
"import/no-duplicates": 2,
454464
"import/no-named-default": 2,
@@ -469,10 +479,13 @@ export default {
469479
// https://github.com/gajus/eslint-plugin-jsdoc/releases/tag/v37.0.0
470480
"jsdoc/check-examples": 0,
471481
"jsdoc/check-indentation": 0,
472-
// Ne pas activer cette règle car elle demande d'aligner les paramètres
473-
// et les valeurs de retours (l'option "tags" fonctionne seulement avec
474-
// "never").
475-
"jsdoc/check-line-alignment": 0,
482+
"jsdoc/check-line-alignment": [2, "always", {
483+
tags: ["param", "property"],
484+
customSpacings: {
485+
postDelimiter: 1,
486+
postTag: 1,
487+
},
488+
}],
476489
"jsdoc/check-param-names": 2,
477490
"jsdoc/check-property-names": 2,
478491
"jsdoc/check-syntax": 2,

.metalint/eslint_config.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
rules: {
39
// Layout & Formatting.

.metalint/eslint_node.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
env: {
39
node: true,

.metalint/eslint_test.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
env: {
39
browser: true,

.metalint/eslint_webext.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
env: {
39
browser: true,

.metalint/htmlhint.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
"alt-require": true,
39
"attr-lowercase": true,

.metalint/htmlhint_tpl.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* @module
3+
* @license MIT
4+
* @author Sébastien Règne
5+
*/
6+
17
export default {
28
"doctype-first": false,
39
};

0 commit comments

Comments
 (0)