From 2604564041125f67a19b45fda1f4e29ec517d410 Mon Sep 17 00:00:00 2001 From: Cleve Stuart <90649124+cleve-fauna@users.noreply.github.com> Date: Thu, 19 Dec 2024 06:45:12 -0800 Subject: [PATCH] Update syntax highlighting in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6d24c18..82f9463 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ yarn add -D @fauna/typescript ### ES Lint Config In `eslint.config.js` put: -```(javascript) +```javascript import { config as defaultConfig } from "@fauna/typescript/config/js/eslint.config.js"; export default [ @@ -38,7 +38,7 @@ export default [ ``` ### Prettier Config In `prettier.config.js` -```(javascript) +```javascript import basePrettierConfig from "@fauna/typescript/config/prettierrc.js"; /** @@ -55,7 +55,7 @@ export default config; ## Script You can then write scripts in your `package.json` such as: -```(json) +```json "scripts": { "lint": "eslint . --fix", "format": "prettier -w --log-level silent .",