mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
lint fixes
This commit is contained in:
parent
3cb9319a93
commit
34ef21cf52
@ -5,7 +5,7 @@
|
||||
"plugin:react/recommended",
|
||||
"plugin:prettier/recommended"
|
||||
],
|
||||
"plugins": ["react", "graphql", "prettier", "compat"],
|
||||
"plugins": ["react", "graphql", "prettier"],
|
||||
"parserOptions": {
|
||||
"sourceType": "module",
|
||||
"ecmaFeatures": {
|
||||
@ -25,7 +25,6 @@
|
||||
"quotes": ["error", "single"],
|
||||
"semi": ["error", "never"],
|
||||
"object-curly-spacing": ["error", "always"],
|
||||
"prettier/prettier": "error",
|
||||
"compat/compat": "error"
|
||||
"prettier/prettier": "error"
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ const { url, googleanalytics, matomoUrl, matomoSite } = meta
|
||||
|
||||
module.exports = {
|
||||
siteMetadata: {
|
||||
siteUrl: `${url}`,
|
||||
siteUrl: `${url}`
|
||||
},
|
||||
plugins: [
|
||||
'gatsby-plugin-react-next',
|
||||
@ -24,31 +24,31 @@ module.exports = {
|
||||
resolve: 'gatsby-source-filesystem',
|
||||
options: {
|
||||
name: 'pkg',
|
||||
path: path.join(__dirname, 'package.json'),
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
path: path.join(__dirname, 'package.json')
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-sass',
|
||||
options: {
|
||||
includePaths: [`${__dirname}/node_modules`, `${__dirname}/src/styles`],
|
||||
},
|
||||
includePaths: [`${__dirname}/node_modules`, `${__dirname}/src/styles`]
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-source-filesystem',
|
||||
options: {
|
||||
name: 'data',
|
||||
path: path.join(__dirname, 'data'),
|
||||
},
|
||||
path: path.join(__dirname, 'data')
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-source-filesystem',
|
||||
options: {
|
||||
name: 'images',
|
||||
path: path.join(__dirname, 'src', 'images'),
|
||||
},
|
||||
path: path.join(__dirname, 'src', 'images')
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-google-analytics',
|
||||
@ -56,8 +56,8 @@ module.exports = {
|
||||
trackingId: `${googleanalytics}`,
|
||||
head: false,
|
||||
anonymize: true,
|
||||
respectDNT: true,
|
||||
},
|
||||
respectDNT: true
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-matomo',
|
||||
@ -65,16 +65,16 @@ module.exports = {
|
||||
siteId: `${matomoSite}`,
|
||||
siteUrl: `${url}`,
|
||||
matomoUrl: `${matomoUrl}`,
|
||||
localScript: '/piwik.js',
|
||||
},
|
||||
localScript: '/piwik.js'
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-svgr',
|
||||
options: {
|
||||
icon: false,
|
||||
viewBox: true,
|
||||
viewBox: true
|
||||
// see https://github.com/smooth-code/svgr for a list of all options
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-favicon',
|
||||
@ -90,9 +90,9 @@ module.exports = {
|
||||
firefox: true,
|
||||
twitter: false,
|
||||
yandex: true,
|
||||
windows: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
windows: true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ exports.modifyWebpackConfig = ({ config, stage }) => {
|
||||
if (stage === 'build-html') {
|
||||
config.loader('null', {
|
||||
test: /intersection-observer/,
|
||||
loader: 'null-loader',
|
||||
loader: 'null-loader'
|
||||
})
|
||||
}
|
||||
}
|
||||
@ -82,8 +82,8 @@ exports.createPages = ({ boundActionCreators, graphql }) => {
|
||||
context: {
|
||||
slug,
|
||||
previous,
|
||||
next,
|
||||
},
|
||||
next
|
||||
}
|
||||
})
|
||||
}
|
||||
)
|
||||
|
@ -51,7 +51,6 @@
|
||||
"eslint": "^4.19.1",
|
||||
"eslint-config-prettier": "^2.9.0",
|
||||
"eslint-loader": "^2.0.0",
|
||||
"eslint-plugin-compat": "^2.2.0",
|
||||
"eslint-plugin-graphql": "^2.1.1",
|
||||
"eslint-plugin-prettier": "^2.6.0",
|
||||
"eslint-plugin-react": "^7.8.2",
|
||||
|
@ -35,8 +35,8 @@ $breakpoint-project-nav: 45rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* stylelint-disable no-descending-specificity */
|
||||
&:last-child {
|
||||
// stylelint-disable-line
|
||||
margin-left: $spacer / 2;
|
||||
|
||||
&:hover,
|
||||
@ -44,6 +44,7 @@ $breakpoint-project-nav: 45rem;
|
||||
transform: translate3d(.5rem, 0, 0);
|
||||
}
|
||||
}
|
||||
/* stylelint-enable no-descending-specificity */
|
||||
|
||||
@media (min-width: $breakpoint-project-nav) {
|
||||
flex-basis: 33%;
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* eslint-disable no-unused-vars */
|
||||
|
||||
/**
|
||||
* vCard Property
|
||||
* @constructor
|
||||
@ -86,8 +88,7 @@ Property.prototype = {
|
||||
* @param {String} version
|
||||
* @return {String}
|
||||
*/
|
||||
toString: function(version) { // eslint-disable-line no-unused-vars
|
||||
|
||||
toString: function(version) {
|
||||
var propName =
|
||||
(this.group ? this.group + '.' : '') + capitalDashCase(this._field)
|
||||
var keys = Object.keys(this)
|
||||
@ -138,7 +139,7 @@ Property.prototype = {
|
||||
}
|
||||
|
||||
return data
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Exports
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* eslint-disable no-unused-vars */
|
||||
|
||||
/**
|
||||
* vCard
|
||||
* @constructor
|
||||
@ -275,7 +277,8 @@ vCard.prototype = {
|
||||
* @param {String} charset
|
||||
* @return {String}
|
||||
*/
|
||||
toString: function(version, charset) { // eslint-disable-line no-unused-vars
|
||||
toString: function(version, charset) {
|
||||
// eslint-disable-line no-unused-vars
|
||||
version = version || this.version
|
||||
return vCard.format(this, version)
|
||||
},
|
||||
@ -313,7 +316,7 @@ vCard.prototype = {
|
||||
*/
|
||||
toJSON: function() {
|
||||
return this.toJCard(this.version)
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Exports
|
||||
|
Loading…
Reference in New Issue
Block a user