Skip to content

Commit

Permalink
Infrastructure: Bump eslint and prettier related dependencies (#2961)
Browse files Browse the repository at this point in the history
- 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]>
  • Loading branch information
evmiguel and howard-e authored May 1, 2024
1 parent 63a6108 commit dd83456
Show file tree
Hide file tree
Showing 10 changed files with 396 additions and 206 deletions.
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

0 comments on commit dd83456

Please sign in to comment.