Skip to content

Commit

Permalink
Merge branch 'v2'
Browse files Browse the repository at this point in the history
  • Loading branch information
PerchunPak committed Feb 8, 2024
2 parents 6e1af95 + 29fce64 commit 80d9bf4
Show file tree
Hide file tree
Showing 101 changed files with 5,038 additions and 8,902 deletions.
16 changes: 16 additions & 0 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"template": "https://github.com/PerchunPak/svelte-template",
"commit": "f36ff79875ca045a744c53f97771bc642c30f7a7",
"checkout": null,
"context": {
"cookiecutter": {
"project_name": "perchun.it",
"organization": "PerchunPak",
"project_description": "My personal portfolio!",
"center_everything": "n",
"_copy_without_render": [".venv"],
"_template": "https://github.com/PerchunPak/svelte-template"
}
},
"directory": null
}
7 changes: 0 additions & 7 deletions .devcontainer/Dockerfile

This file was deleted.

13 changes: 0 additions & 13 deletions .devcontainer/devcontainer.json

This file was deleted.

13 changes: 13 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
31 changes: 31 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +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',
plugins: ['@typescript-eslint'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte']
},
env: {
browser: true,
es2017: true,
node: true
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
}
}
]
};
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

Loading

0 comments on commit 80d9bf4

Please sign in to comment.