style(prettier): ignore astro dir

This commit is contained in:
Jewgeni Lewash 2024-03-03 18:04:01 +01:00
parent 568cb053b0
commit 3ee16148e1
2 changed files with 36 additions and 32 deletions

67
.astro/types.d.ts vendored
View File

@ -135,41 +135,44 @@ declare module 'astro:content' {
>;
type ContentEntryMap = {
blog: {
'10-essential-web-development-tools-for-building-stunning-websites.mdx': {
id: '10-essential-web-development-tools-for-building-stunning-websites.mdx';
slug: '10-essential-web-development-tools-for-building-stunning-websites';
body: string;
collection: 'blog';
data: InferEntrySchema<'blog'>;
} & { render(): Render['.mdx'] };
'essential-frontend-tools-for-astro-js-developers.mdx': {
id: 'essential-frontend-tools-for-astro-js-developers.mdx';
slug: 'essential-frontend-tools-for-astro-js-developers';
body: string;
collection: 'blog';
data: InferEntrySchema<'blog'>;
} & { render(): Render['.mdx'] };
'exploring-nodejs-development-trends-2024.mdx': {
id: 'exploring-nodejs-development-trends-2024.mdx';
slug: 'exploring-nodejs-development-trends-2024';
body: string;
collection: 'blog';
data: InferEntrySchema<'blog'>;
} & { render(): Render['.mdx'] };
'unleasing-the-power-of-astro-js-for-better-web-development.mdx': {
id: 'unleasing-the-power-of-astro-js-for-better-web-development.mdx';
slug: 'unleasing-the-power-of-astro-js-for-better-web-development';
body: string;
collection: 'blog';
data: InferEntrySchema<'blog'>;
} & { render(): Render['.mdx'] };
};
"blog": {
"10-essential-web-development-tools-for-building-stunning-websites.mdx": {
id: "10-essential-web-development-tools-for-building-stunning-websites.mdx";
slug: "10-essential-web-development-tools-for-building-stunning-websites";
body: string;
collection: "blog";
data: InferEntrySchema<"blog">
} & { render(): Render[".mdx"] };
"essential-frontend-tools-for-astro-js-developers.mdx": {
id: "essential-frontend-tools-for-astro-js-developers.mdx";
slug: "essential-frontend-tools-for-astro-js-developers";
body: string;
collection: "blog";
data: InferEntrySchema<"blog">
} & { render(): Render[".mdx"] };
"exploring-nodejs-development-trends-2024.mdx": {
id: "exploring-nodejs-development-trends-2024.mdx";
slug: "exploring-nodejs-development-trends-2024";
body: string;
collection: "blog";
data: InferEntrySchema<"blog">
} & { render(): Render[".mdx"] };
"unleasing-the-power-of-astro-js-for-better-web-development.mdx": {
id: "unleasing-the-power-of-astro-js-for-better-web-development.mdx";
slug: "unleasing-the-power-of-astro-js-for-better-web-development";
body: string;
collection: "blog";
data: InferEntrySchema<"blog">
} & { render(): Render[".mdx"] };
};
};
type DataEntryMap = {};
type DataEntryMap = {
};
type AnyEntryMap = ContentEntryMap & DataEntryMap;
export type ContentConfig = typeof import('../src/content/config.js');
export type ContentConfig = typeof import("../src/content/config.js");
}

View File

@ -1,3 +1,4 @@
.astro
.github
dist
node_modules