Skip to content

Commit dd83456

Browse files
evmiguelhoward-e
andauthored
Infrastructure: Bump eslint and prettier related dependencies (#2961)
- Bumps eslint from 8.52.0 to 8.57.0 - Bumps eslint-plugin-jsdoc from 39.3.3 to 48.2.3 - Bumps eslint-plugin-html from 6.2.0 to 8.1.1 - Bumps eslint-config-prettier from 8.5.0 to 9.1.0 - Bumps eslint-plugin-prettier from 4.2.1 to 5.1.3 - Bumps eslint-plugin-ava from 13.2.0 to 14.0.0 - Bumps prettier from 2.7.1 to 3.2.5 --------- Co-authored-by: Howard Edwards <[email protected]>
1 parent 63a6108 commit dd83456

File tree

10 files changed

+396
-206
lines changed

10 files changed

+396
-206
lines changed

.eslintrc.json

+2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@
1212
"ecmaVersion": 6
1313
},
1414
"rules": {
15+
"jsdoc/check-line-alignment": 0,
1516
"jsdoc/no-undefined-types": 0,
1617
"jsdoc/require-jsdoc": 0,
1718
"jsdoc/require-param-description": 0,
1819
"jsdoc/require-param-type": 0,
1920
"jsdoc/require-returns-description": 0,
21+
"jsdoc/tag-lines": ["warn", "any", { "startLines": 1 }],
2022
"strict": [2, "global"],
2123
"no-console": "error"
2224
},

.prettierrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"singleQuote": true,
3+
"trailingComma": "es5",
34
"overrides": [
45
{
56
"files": ["**/*.css"],

content/patterns/alertdialog/examples/css/alertdialog.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121

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

content/patterns/dialog-modal/examples/css/dialog.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121

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

0 commit comments

Comments
 (0)