build(font-size): update and lock dependencies (#2803)

This commit is contained in:
Baptiste Augrain
2026-04-26 12:26:21 +02:00
committed by GitHub
parent 5e5b2ffb2e
commit e78f14dea2
8 changed files with 436 additions and 43 deletions

View File

@@ -48,8 +48,14 @@
"error",
{
"selector": "variable",
"modifiers": ["const", "global"],
"format": ["camelCase", "UPPER_CASE"],
"modifiers": [
"const",
"global"
],
"format": [
"camelCase",
"UPPER_CASE"
],
"filter": {
"regex": "^(__filename|__dirname)$",
"match": false
@@ -57,7 +63,9 @@
},
{
"selector": "variable",
"format": ["camelCase"],
"format": [
"camelCase"
],
"filter": {
"regex": "^(__filename|__dirname)$",
"match": false
@@ -66,6 +74,14 @@
],
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"@typescript-eslint/no-empty-function": [
"error",
{
"allow": [
"arrowFunctions"
]
}
],
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/object-curly-spacing": [
@@ -82,7 +98,7 @@
"capitalized-comments": "off",
"complexity": "off",
"default-case": "off",
"import/extensions": [
"import/extensions": [
"error",
"never"
],
@@ -117,6 +133,7 @@
"no-lonely-if": "off",
"no-negated-condition": "off",
"object-curly-newline": "off",
"object-shorthand": "off",
"one-var": [
"error",
"never"