Skip to content

Commit

Permalink
Fix: Ensure icons in manifest.webmanifest are prefixed with both asse…
Browse files Browse the repository at this point in the history
…tPrefix and pathPrefix
  • Loading branch information
emmron committed Jul 22, 2024
1 parent c2357b1 commit 111ff8f
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ module.exports = {
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:prettier/recommended",
"react-app"
],
"parserOptions": {
"ecmaFeatures": {
Expand All @@ -15,8 +19,20 @@ module.exports = {
"sourceType": "module"
},
"plugins": [
"react"
"react",
"react-hooks",
"jsx-a11y",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off"
},
"globals": {
"__PATH_PREFIX__": true,
"__TRAILING_SLASH__": true,
"___emitter": true,
"GATSBY_LAYOUT_COMPONENT_PATH": true
}
};

0 comments on commit 111ff8f

Please sign in to comment.