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

Infrastructure: Bump eslint from 8.52.0 to 8.57.0, eslint-plugin-jsdoc from 39.3.3 to 48.2.3, eslint-plugin-html from 6.2.0 to 8.1.1, eslint-config-prettier from 8.5.0 to 9.1.0, eslint-plugin-prettier from 4.2.1 to 5.1.3, eslint-plugin-ava from 13.2.0 to 14.0.0, and prettier from 2.7.1 to 3.2.5 #2961

Merged
merged 8 commits into from
May 1, 2024
2 changes: 2 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
"ecmaVersion": 6
},
"rules": {
"jsdoc/check-line-alignment": 0,
"jsdoc/no-undefined-types": 0,
"jsdoc/require-jsdoc": 0,
"jsdoc/require-param-description": 0,
"jsdoc/require-param-type": 0,
"jsdoc/require-returns-description": 0,
"jsdoc/tag-lines": ["warn", "any", { "startLines": 1 }],
"strict": [2, "global"],
"no-console": "error"
},
Expand Down
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": ["**/*.css"],
Expand Down
4 changes: 3 additions & 1 deletion content/patterns/alertdialog/examples/css/alertdialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@

min-width: calc(640px - (15px * 2)); /* == breakpoint - left+right margin */
min-height: auto;
box-shadow: 0 19px 38px rgb(0 0 0 / 12%), 0 15px 12px rgb(0 0 0 / 22%);
box-shadow:
0 19px 38px rgb(0 0 0 / 12%),
0 15px 12px rgb(0 0 0 / 22%);
}
}

Expand Down
4 changes: 3 additions & 1 deletion content/patterns/dialog-modal/examples/css/dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@

min-width: calc(640px - (15px * 2)); /* == breakpoint - left+right margin */
min-height: auto;
box-shadow: 0 19px 38px rgb(0 0 0 / 12%), 0 15px 12px rgb(0 0 0 / 22%);
box-shadow:
0 19px 38px rgb(0 0 0 / 12%),
0 15px 12px rgb(0 0 0 / 22%);
}
}

Expand Down
Loading
Loading