This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://biomejs.dev/schemas/2.3.2/schema.json", | |
| "formatter": { | |
| "enabled": true, | |
| "indentStyle": "space", | |
| "indentWidth": 2 | |
| }, | |
| "javascript": { | |
| "formatter": { | |
| "semicolons": "always", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| theme = "monokai_pro" | |
| [editor] | |
| line-number = "relative" | |
| mouse = true | |
| rulers = [120] | |
| completion-replace = true | |
| end-of-line-diagnostics = "hint" | |
| color-modes = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Yields a value from deeply nested objects. | |
| * @param {Record<String, Any>} down The object to drill in. | |
| * @param {String} until Period-separated string of keys inside `down` object. | |
| * @returns {Any} Returns `undefined` if any key of `until` is not valid. | |
| * @throws {TypeError} Throws if an undefined key is present in `until`. | |
| * @example | |
| * ```js | |
| * const exampleObj = { | |
| * layer1: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/wp-env.json", | |
| "themes": ["."], | |
| "plugins": ["Create Block Theme"], | |
| "config": { | |
| "WP_SITEURL": "<your preferred base URI, `localhost` for local dev>", | |
| "WP_HOME": "<your preferred base URI, `localhost` for local dev>" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| /* Base options */ | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "target": "ESNext", | |
| "verbatimModuleSyntax": true, | |
| "moduleDetection": "force", | |
| "module": "ESNext", | |
| "lib": [ |