diff --git a/.changeset /config.json b/.changeset /config.json index 86bc1a8..2517d90 100644 --- a/.changeset /config.json +++ b/.changeset /config.json @@ -1,11 +1,11 @@ { - "$schema": "../node_modules/@changesets/config/schema.json", - "changelog": ["@changesets/changelog-github", { "repo": "withstudiocms/project-template" }], - "commit": false, - "fixed": [], - "linked": [], - "access": "public", - "baseBranch": "main", - "updateInternalDependencies": "patch", - "ignore": ["playground"] - } \ No newline at end of file + "$schema": "../node_modules/@changesets/config/schema.json", + "changelog": ["@changesets/changelog-github", { "repo": "withstudiocms/project-template" }], + "commit": false, + "fixed": [], + "linked": [], + "access": "public", + "baseBranch": "main", + "updateInternalDependencies": "patch", + "ignore": ["playground"] +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 572d8e9..1e24aea 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,4 +1,8 @@ { - "recommendations": ["astro-build.astro-vscode", "biomejs.biome", "streetsidesoftware.code-spell-checker"], - "unwantedRecommendations": [] - } \ No newline at end of file + "recommendations": [ + "astro-build.astro-vscode", + "biomejs.biome", + "streetsidesoftware.code-spell-checker" + ], + "unwantedRecommendations": [] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 83bd538..b9f7eda 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,13 +1,10 @@ { - "typescript.tsdk": "node_modules/typescript/lib", - "editor.codeActionsOnSave": { - "quickfix.biome": "explicit", - "source.organizeImports.biome": "explicit" - }, - "editor.defaultFormatter": "biomejs.biome", - "editor.gotoLocation.multipleDefinitions": "goto", - "cSpell.words": [ - "studiocms", - "withstudiocms" - ] -} \ No newline at end of file + "typescript.tsdk": "node_modules/typescript/lib", + "editor.codeActionsOnSave": { + "quickfix.biome": "explicit", + "source.organizeImports.biome": "explicit" + }, + "editor.defaultFormatter": "biomejs.biome", + "editor.gotoLocation.multipleDefinitions": "goto", + "cSpell.words": ["studiocms", "withstudiocms"] +} diff --git a/biome.json b/biome.json index f058be2..cd36124 100644 --- a/biome.json +++ b/biome.json @@ -1,53 +1,53 @@ { - "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", - "vcs": { - "enabled": true, - "clientKind": "git", - "useIgnoreFile": true, - "defaultBranch": "main" - }, - "files": { - "ignoreUnknown": true, - "ignore": ["**/.astro/**", "**/package.json", "**/dist/**"] - }, + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", + "vcs": { + "enabled": true, + "clientKind": "git", + "useIgnoreFile": true, + "defaultBranch": "main" + }, + "files": { + "ignoreUnknown": true, + "ignore": ["**/.astro/**", "**/package.json", "**/dist/**"] + }, + "formatter": { + "lineWidth": 100, + "lineEnding": "lf" + }, + "javascript": { "formatter": { - "lineWidth": 100, - "lineEnding": "lf" - }, - "javascript": { - "formatter": { - "quoteStyle": "single", - "trailingCommas": "es5" - } - }, - "json": { - "formatter": { - "indentStyle": "space" - } - }, - "organizeImports": { - "enabled": true - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true, - "suspicious": { - "noExplicitAny": "warn" - } + "quoteStyle": "single", + "trailingCommas": "es5" + } + }, + "json": { + "formatter": { + "indentStyle": "space" + } + }, + "organizeImports": { + "enabled": true + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "suspicious": { + "noExplicitAny": "warn" } - }, - "overrides": [ - { - "include": ["*.astro"], - "linter": { - "rules": { - "style": { - "useConst": "off", - "useImportType": "off" - } + } + }, + "overrides": [ + { + "include": ["*.astro"], + "linter": { + "rules": { + "style": { + "useConst": "off", + "useImportType": "off" } } } - ] - } \ No newline at end of file + } + ] +}