* delete eslint-plugin-standard, update eslint-config-standard and eslint * update code for new eslint rules * Update services/jira/jira-sprint.service.js Co-authored-by: Paul Melnikow <github@paulmelnikow.com> Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
34 lines
971 B
JavaScript
34 lines
971 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
siteMetadata: {
|
|
title: 'Shields.io: Quality metadata badges for open source projects',
|
|
description:
|
|
'We serve fast and scalable informational images as badges for GitHub, Travis CI, Jenkins, WordPress and many more services. Use them to track the state of your projects, or for promotional purposes.',
|
|
author: '@shields_io',
|
|
},
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-plugin-page-creator',
|
|
options: {
|
|
path: path.join(__dirname, 'frontend', 'pages'),
|
|
},
|
|
},
|
|
'gatsby-plugin-react-helmet',
|
|
'gatsby-plugin-catch-links',
|
|
'gatsby-plugin-styled-components',
|
|
'gatsby-plugin-remove-trailing-slashes',
|
|
'gatsby-plugin-typescript',
|
|
// This currently is not being used.
|
|
// {
|
|
// resolve: 'gatsby-source-filesystem',
|
|
// options: {
|
|
// name: 'static',
|
|
// path: `${__dirname}/frontend/static`,
|
|
// },
|
|
// },
|
|
],
|
|
}
|