Skip to content

Commit

Permalink
chore: wip cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
theodesp committed Oct 22, 2024
1 parent 9011492 commit 9cd7fe8
Show file tree
Hide file tree
Showing 22 changed files with 16,432 additions and 28,995 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ module.exports = {
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
'@typescript-eslint/unbound-method': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-unsafe-call': 0,
'@typescript-eslint/no-unsafe-return': 0,
'@typescript-eslint/no-unsafe-argument': 0,
'no-void': 0,
'import/named': 0,
'import/no-extraneous-dependencies': [
Expand Down
65 changes: 0 additions & 65 deletions .github/workflows/e2e-test-plugin.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Header({
<Container>
<div className={cx('navbar')}>
<div className={cx('brand')}>
<Link href="/">
<Link legacyBehavior href="/">
<a className={cx('title')}>{title}</a>
</Link>
{description && <p className={cx('description')}>{description}</p>}
Expand Down
4 changes: 2 additions & 2 deletions examples/next/faustwp-getting-started/components/Post/Post.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Post({
return (
<article className={styles.component}>
{featuredImage && (
<Link href={uri}>
<Link legacyBehavior href={uri}>
<a>
<FeaturedImage
image={featuredImage}
Expand All @@ -25,7 +25,7 @@ export default function Post({
</Link>
)}

<Link href={uri}>
<Link legacyBehavior href={uri}>
<a>
<h2>{title}</h2>
</a>
Expand Down
10 changes: 5 additions & 5 deletions examples/next/faustwp-getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"@apollo/client": "^3.10.4",
"@faustwp/cli": "^3.1.0",
"@faustwp/core": "^3.1.0",
"@wordpress/base-styles": "^4.49.0",
"@wordpress/block-library": "^7.19.0",
"@wordpress/base-styles": "^5.10.0",
"@wordpress/block-library": "^9.10.0",
"classnames": "^2.5.1",
"graphql": "^16.8.1",
"next": "^12.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"next": "^14.2.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.77.3"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 9cd7fe8

Please sign in to comment.