From ba45aaa81bd5c4d768e315ff57520738b6b59777 Mon Sep 17 00:00:00 2001 From: Peter Johanson Date: Wed, 9 Jun 2021 14:55:33 +0000 Subject: [PATCH] chore(docs): Bump prettier, and reformat w/ it. * Bump to prettier 2.3.1. * Re-run prettier:format to apply updated format. --- docs/docs/intro.md | 1 - docs/package-lock.json | 15 ++++++++------- docs/package.json | 2 +- docs/src/components/codes/Description.jsx | 3 ++- docs/src/pages/power-profiler.js | 6 ++---- 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 80887367..7e8e1e67 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -14,7 +14,6 @@ ZMK is currently missing some features found in other popular firmware. This tab | Legend: | ✅ Supported | 🚧 Under Development | 💡 Planned | | :------ | :----------- | :------------------- | :--------- | - | **Feature** | ZMK | BlueMicro | QMK | | ------------------------------------------------------------------------------------------------------------------------- | :-: | :-------: | :-: | | Low Latency BLE Support | ✅ | ✅ | | diff --git a/docs/package-lock.json b/docs/package-lock.json index e0d5fbdc..b36bf888 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -26,7 +26,7 @@ "eslint-plugin-mdx": "^1.13.0", "eslint-plugin-react": "^7.23.2", "null-loader": "^4.0.0", - "prettier": "2.1.2", + "prettier": "2.3.1", "string-replace-loader": "^3.0.0" } }, @@ -11084,9 +11084,9 @@ } }, "node_modules/prettier": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", - "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", + "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", "dev": true, "bin": { "prettier": "bin-prettier.js" @@ -24415,9 +24415,9 @@ "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" }, "prettier": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", - "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", + "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", "dev": true }, "pretty-error": { @@ -25502,6 +25502,7 @@ "chalk": "^4.1.0", "find-up": "^5.0.0", "mkdirp": "^1.0.4", + "postcss": "^8.2.4", "strip-json-comments": "^3.1.1" }, "dependencies": { diff --git a/docs/package.json b/docs/package.json index bd97965e..09a8e9fc 100644 --- a/docs/package.json +++ b/docs/package.json @@ -45,7 +45,7 @@ "eslint-plugin-mdx": "^1.13.0", "eslint-plugin-react": "^7.23.2", "null-loader": "^4.0.0", - "prettier": "2.1.2", + "prettier": "2.3.1", "string-replace-loader": "^3.0.0" } } diff --git a/docs/src/components/codes/Description.jsx b/docs/src/components/codes/Description.jsx index 6d8c5f62..7ad5fc2c 100644 --- a/docs/src/components/codes/Description.jsx +++ b/docs/src/components/codes/Description.jsx @@ -7,7 +7,8 @@ import React from "react"; import PropTypes from "prop-types"; -const specialCharactersRegex = /(?:^|\s)((?:&(?:(?:\w+)|(?:#\d+));)|[_]|[^\w\s])(?:\s*\[([^[\]]+?)\])/g; +const specialCharactersRegex = + /(?:^|\s)((?:&(?:(?:\w+)|(?:#\d+));)|[_]|[^\w\s])(?:\s*\[([^[\]]+?)\])/g; function renderSpecialCharacters(description) { const matches = Array.from(description.matchAll(specialCharactersRegex)); diff --git a/docs/src/pages/power-profiler.js b/docs/src/pages/power-profiler.js index ca46f5ca..fc803c58 100644 --- a/docs/src/pages/power-profiler.js +++ b/docs/src/pages/power-profiler.js @@ -30,10 +30,8 @@ function PowerProfiler() { const { value: psuType, bind: bindPsuType } = useInput(""); const { value: outputV, bind: bindOutputV } = useInput(3.3); const { value: quiescentMicroA, bind: bindQuiescentMicroA } = useInput(55); - const { - value: otherQuiescentMicroA, - bind: bindOtherQuiescentMicroA, - } = useInput(0); + const { value: otherQuiescentMicroA, bind: bindOtherQuiescentMicroA } = + useInput(0); const { value: efficiency, bind: bindEfficiency } = useInput(0.9); const { value: bondedQty, bind: bindBondedQty } = useInput(1);