Skip to content

Commit 1072c08

Browse files
committed
eslint
1 parent 5ab68c8 commit 1072c08

File tree

5 files changed

+1
-21
lines changed

5 files changed

+1
-21
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ This portfolio showcases my journey as a developer specializing in **Minecraft A
2828

2929
## Features
3030

31-
- **Interactive 3D Background Waves**: Dynamic wave animations built with `Three.js` and `Canvas`, responsive to user interactions.
3231
- **Interactive 3D Avatar**: A fully interactive 3D model of my Minecraft avatar that reacts to user input.
3332
- **Smooth Scrolling and Animations**: Enhanced navigation and animations powered by `Framer Motion`.
3433
- **Responsive Design**: Optimized for desktop, tablet, and mobile devices.

eslint.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
55
import reactRefresh from 'eslint-plugin-react-refresh'
66
import typescript from '@typescript-eslint/eslint-plugin'
77
import parser from '@typescript-eslint/parser'
8-
import next from 'eslint-plugin-next'
8+
99

1010
export default [
1111
{ ignores: ['dist', '.next'] },
@@ -27,15 +27,13 @@ export default [
2727
'react-hooks': reactHooks,
2828
'react-refresh': reactRefresh,
2929
'@typescript-eslint': typescript,
30-
next,
3130
},
3231
rules: {
3332
...js.configs.recommended.rules,
3433
...react.configs.recommended.rules,
3534
...react.configs['jsx-runtime'].rules,
3635
...reactHooks.configs.recommended.rules,
3736
...typescript.configs.recommended.rules,
38-
...next.configs.recommended.rules,
3937
'react/jsx-no-target-blank': 'off',
4038
'react-refresh/only-export-components': [
4139
'warn',

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"@typescript-eslint/eslint-plugin": "^6.0.0",
3030
"autoprefixer": "^10.4.0",
3131
"eslint": "^8.50.0",
32-
"eslint-plugin-next": "^0.0.0",
3332
"eslint-plugin-react": "^7.35.0",
3433
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
3534
"eslint-plugin-react-refresh": "^0.4.9",

src/components/layout/Background.tsx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
1-
import Waves from "./Waves.tsx";
2-
31
const Bg = () => {
42
return (
53
<div className="absolute top-0 left-0 z-[-1] w-full h-full">
6-
<Waves
7-
lineColor="#3b3b3b"
8-
backgroundColor="#262626"
9-
waveSpeedX={0.02}
10-
waveSpeedY={0.01}
11-
waveAmpX={40}
12-
waveAmpY={20}
13-
friction={0.9}
14-
tension={0.01}
15-
maxCursorMove={120}
16-
xGap={12}
17-
yGap={36}
18-
/>
194
</div>
205
);
216
};

src/components/layout/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
export { default as Nav } from './Nav';
33
export { default as Background } from './Background';
44
export { default as MyHead } from './MyHead';
5-
export { default as Waves } from './Waves';

0 commit comments

Comments
 (0)