Skip to content

Commit

Permalink
about me page
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyjoeseph committed Feb 18, 2024
1 parent 2306c74 commit d748b6e
Show file tree
Hide file tree
Showing 44 changed files with 5,430 additions and 799 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Expand Up @@ -8,7 +8,6 @@ node_modules
!.env.example

# Ignore files for PNPM, NPM and YARN
package.json
pnpm-lock.yaml
package-lock.json
yarn.lock
29 changes: 20 additions & 9 deletions .eslintrc.cjs
@@ -1,20 +1,31 @@
/** @type { import("eslint").Linter.Config } */
module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier'
],
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['svelte3', '@typescript-eslint'],
ignorePatterns: ['*.cjs'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
settings: {
'svelte3/typescript': () => require('typescript')
},
plugins: ['@typescript-eslint'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020
ecmaVersion: 2020,
extraFileExtensions: ['.svelte']
},
env: {
browser: true,
es2017: true,
node: true
}
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
}
}
]
};
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -22,3 +22,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

.svelte-kit
2 changes: 1 addition & 1 deletion .vscode/settings.json
Expand Up @@ -10,6 +10,6 @@
"strings": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
13 changes: 0 additions & 13 deletions index.html

This file was deleted.

34 changes: 0 additions & 34 deletions jsconfig.json

This file was deleted.

0 comments on commit d748b6e

Please sign in to comment.