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

Commit a05b042

Browse files
committed
Reformat with prettier
1 parent 8c59b9a commit a05b042

1 file changed

Lines changed: 46 additions & 46 deletions

File tree

gatsby-config.js

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -6,66 +6,66 @@
66

77
const scannerRepos = [
88
{
9-
name: "Amass",
10-
url: "https://github.com/secureCodeBox/scanner-infrastructure-amass"
9+
name: 'Amass',
10+
url: 'https://github.com/secureCodeBox/scanner-infrastructure-amass',
1111
},
1212
{
13-
name: "Arachni",
14-
url: "https://github.com/secureCodeBox/scanner-webapplication-arachni"
13+
name: 'Arachni',
14+
url: 'https://github.com/secureCodeBox/scanner-webapplication-arachni',
1515
},
1616
{
17-
name: "Nikto",
18-
url: "https://github.com/secureCodeBox/scanner-webserver-nikto"
17+
name: 'Nikto',
18+
url: 'https://github.com/secureCodeBox/scanner-webserver-nikto',
1919
},
2020
{
21-
name: "Nmap",
22-
url: "https://github.com/secureCodeBox/scanner-infrastructure-nmap"
21+
name: 'Nmap',
22+
url: 'https://github.com/secureCodeBox/scanner-infrastructure-nmap',
2323
},
2424
{
25-
name: "SSH",
26-
url: "https://github.com/secureCodeBox/scanner-infrastructure-ssh"
25+
name: 'SSH',
26+
url: 'https://github.com/secureCodeBox/scanner-infrastructure-ssh',
2727
},
2828
{
29-
name: "SSLyze",
30-
url: "https://github.com/secureCodeBox/scanner-infrastructure-sslyze"
29+
name: 'SSLyze',
30+
url: 'https://github.com/secureCodeBox/scanner-infrastructure-sslyze',
3131
},
3232
{
33-
name: "WPscan",
34-
url: "https://github.com/secureCodeBox/scanner-cms-wpscan"
33+
name: 'WPscan',
34+
url: 'https://github.com/secureCodeBox/scanner-cms-wpscan',
3535
},
3636
{
37-
name: "Zap",
38-
url: "https://github.com/secureCodeBox/scanner-webapplication-zap"
39-
}
37+
name: 'Zap',
38+
url: 'https://github.com/secureCodeBox/scanner-webapplication-zap',
39+
},
4040
];
4141

4242
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
// link: '/getStarted',
57-
link: "https://github.com/secureCodeBox/secureCodeBox"
57+
link: 'https://github.com/secureCodeBox/secureCodeBox',
5858
},
5959
{
60-
name: "Docs",
60+
name: 'Docs',
6161
// link: '/docs',
62-
link: "https://github.com/secureCodeBox/secureCodeBox/tree/master/docs"
62+
link: 'https://github.com/secureCodeBox/secureCodeBox/tree/master/docs',
6363
},
6464
{
6565
name: 'Scanner',
6666
link: '/scanner',
6767
},
68-
]
68+
],
6969
},
7070

7171
plugins: [
@@ -77,10 +77,10 @@ module.exports = {
7777
options: {
7878
tableOfContents: {
7979
heading: null,
80-
maxDepth: 6
80+
maxDepth: 6,
8181
},
82-
excerpt_separator: `<!-- end -->`
83-
}
82+
excerpt_separator: `<!-- end -->`,
83+
},
8484
},
8585
{
8686
resolve: `gatsby-plugin-manifest`,
@@ -93,38 +93,38 @@ module.exports = {
9393
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
9494
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
9595
display: `standalone`,
96-
icon: `src/images/icon.png` // This path is relative to the root of the site.
97-
}
96+
icon: `src/images/icon.png`, // This path is relative to the root of the site.
97+
},
9898
},
9999
`gatsby-plugin-offline`, //should be listed *after* gatsby-plugin-manifest
100100
`gatsby-plugin-react-helmet`,
101101
{
102102
resolve: `gatsby-source-filesystem`,
103103
options: {
104-
name: "src",
105-
path: `${__dirname}/src/`
106-
}
104+
name: 'src',
105+
path: `${__dirname}/src/`,
106+
},
107107
},
108108
{
109-
resolve: "gatsby-source-filesystem",
109+
resolve: 'gatsby-source-filesystem',
110110
options: {
111111
path: `${__dirname}/src/pages`,
112-
name: "pages"
113-
}
112+
name: 'pages',
113+
},
114114
},
115115
{
116-
resolve: "gatsby-source-filesystem",
116+
resolve: 'gatsby-source-filesystem',
117117
options: {
118118
path: `${__dirname}/src/data`,
119-
name: "data"
120-
}
119+
name: 'data',
120+
},
121121
},
122122
{
123-
resolve: "gatsby-source-filesystem",
123+
resolve: 'gatsby-source-filesystem',
124124
options: {
125125
path: `${__dirname}/src/images`,
126-
name: "images"
127-
}
126+
name: 'images',
127+
},
128128
},
129129

130130
...scannerRepos.map(({ name, url }) => {
@@ -134,9 +134,9 @@ module.exports = {
134134
name: name,
135135
remote: url,
136136
branch: `update-doc`,
137-
patterns: `README.md`
138-
}
137+
patterns: `README.md`,
138+
},
139139
};
140-
})
141-
]
140+
}),
141+
],
142142
};

0 commit comments

Comments
 (0)