Skip to content

Commit

Permalink
Convert whole project to typescript and adjust skill section
Browse files Browse the repository at this point in the history
  • Loading branch information
RUSHIGoswami committed Nov 22, 2024
1 parent 6deb11c commit 685d95b
Show file tree
Hide file tree
Showing 35 changed files with 3,075 additions and 1,239 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'no-console': ['warn', { allow: ['warn', 'error'] }],
},
settings: {
react: {
version: 'detect',
},
},
}
235 changes: 235 additions & 0 deletions dist/assets/index-B4hdjOGO.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/index-B4hdjOGO.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/assets/index-BAxJNJCD.css

This file was deleted.

Loading

0 comments on commit 685d95b

Please sign in to comment.