Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit ab28d9f

Browse files
committed
Autoformat
1 parent b2321c4 commit ab28d9f

1 file changed

Lines changed: 36 additions & 35 deletions

File tree

gatsby-config.js

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -43,32 +43,33 @@ module.exports = {
4343
siteMetadata: {
4444
title: `secureCodeBox`,
4545
company: `iteratec GmbH`,
46-
description: "",
46+
description: '',
4747
// siteUrl: '',
4848
contact: {
49-
phone: "XXX XXX XXX",
50-
email: "security@iteratec.de"
49+
phone: 'XXX XXX XXX',
50+
email: 'security@iteratec.de',
5151
},
5252
// TODO: replace links with actual pages here and link the correct reference in Menu.js
5353
menuLinks: [
5454
{
55-
name: "Get Started",
55+
name: 'Get Started',
5656
external: true,
5757
// link: '/getStarted',
58-
link: "https://github.com/secureCodeBox/secureCodeBox"
58+
link: 'https://github.com/secureCodeBox/secureCodeBox',
5959
},
6060
{
61-
name: "Docs",
61+
name: 'Docs',
6262
external: true,
6363
// link: '/docs',
64-
link: "https://github.com/secureCodeBox/secureCodeBox/tree/master/docs/index.md"
64+
link:
65+
'https://github.com/secureCodeBox/secureCodeBox/tree/master/docs/index.md',
6566
},
6667
{
67-
name: "Integrations",
68+
name: 'Integrations',
6869
external: false,
69-
link: "/integrations"
70-
}
71-
]
70+
link: '/integrations',
71+
},
72+
],
7273
},
7374

7475
plugins: [
@@ -79,10 +80,10 @@ module.exports = {
7980
options: {
8081
tableOfContents: {
8182
heading: null,
82-
maxDepth: 6
83+
maxDepth: 6,
8384
},
84-
excerpt_separator: `<!-- end -->`
85-
}
85+
excerpt_separator: `<!-- end -->`,
86+
},
8687
},
8788
{
8889
resolve: `gatsby-plugin-manifest`,
@@ -95,45 +96,45 @@ module.exports = {
9596
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
9697
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
9798
display: `standalone`,
98-
icon: `src/images/icon.png` // This path is relative to the root of the site.
99-
}
99+
icon: `src/images/icon.png`, // This path is relative to the root of the site.
100+
},
100101
},
101102
`gatsby-plugin-offline`, //should be listed *after* gatsby-plugin-manifest
102103
`gatsby-plugin-react-helmet`,
103104
{
104105
resolve: `gatsby-source-filesystem`,
105106
options: {
106-
name: "src",
107-
path: `${__dirname}/src/`
108-
}
107+
name: 'src',
108+
path: `${__dirname}/src/`,
109+
},
109110
},
110111
{
111-
resolve: "gatsby-source-filesystem",
112+
resolve: 'gatsby-source-filesystem',
112113
options: {
113114
path: `${__dirname}/src/pages`,
114-
name: "pages"
115-
}
115+
name: 'pages',
116+
},
116117
},
117118
{
118-
resolve: "gatsby-source-filesystem",
119+
resolve: 'gatsby-source-filesystem',
119120
options: {
120121
path: `${__dirname}/src/data`,
121-
name: "data"
122-
}
122+
name: 'data',
123+
},
123124
},
124125
{
125-
resolve: "gatsby-source-filesystem",
126+
resolve: 'gatsby-source-filesystem',
126127
options: {
127128
path: `${__dirname}/src/images`,
128-
name: "images"
129-
}
129+
name: 'images',
130+
},
130131
},
131132
{
132-
resolve: "gatsby-plugin-mailchimp",
133+
resolve: 'gatsby-plugin-mailchimp',
133134
options: {
134135
endpoint:
135-
"https://securecodebox.us16.list-manage.com/subscribe/post?u=3aeba03d53798fc931e449d46&amp;id=252edbca74"
136-
}
136+
'https://securecodebox.us16.list-manage.com/subscribe/post?u=3aeba03d53798fc931e449d46&amp;id=252edbca74',
137+
},
137138
},
138139

139140
...scannerRepos.map(({ name, url }) => {
@@ -143,9 +144,9 @@ module.exports = {
143144
name: name,
144145
remote: url,
145146
branch: `update-doc`,
146-
patterns: `README.md`
147-
}
147+
patterns: `README.md`,
148+
},
148149
};
149-
})
150-
]
150+
}),
151+
],
151152
};

0 commit comments

Comments
 (0)