We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a2224f commit ff61a3cCopy full SHA for ff61a3c
.eslintignore
@@ -0,0 +1,13 @@
1
+.DS_Store
2
+node_modules
3
+/build
4
+/.svelte-kit
5
+/package
6
+.env
7
+.env.*
8
+!.env.example
9
+
10
+# Ignore files for PNPM, NPM and YARN
11
+pnpm-lock.yaml
12
+package-lock.json
13
+yarn.lock
.eslintrc.cjs
@@ -0,0 +1,30 @@
+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,
14
+ extraFileExtensions: ['.svelte']
15
+ },
16
+ env: {
17
+ browser: true,
18
+ es2017: true,
19
+ node: true
20
21
+ overrides: [
22
+ {
23
+ files: ['*.svelte'],
24
+ parser: 'svelte-eslint-parser',
25
26
+ parser: '@typescript-eslint/parser'
27
+ }
28
29
+ ]
30
+};
.gitignore
@@ -0,0 +1,10 @@
+vite.config.js.timestamp-*
+vite.config.ts.timestamp-*
.npmrc
@@ -0,0 +1,2 @@
+engine-strict=true
+resolution-mode=highest
.prettierignore
.prettierrc
@@ -0,0 +1,9 @@
+{
+ "useTabs": true,
+ "singleQuote": true,
+ "trailingComma": "none",
+ "printWidth": 100,
+ "plugins": ["prettier-plugin-svelte"],
+ "pluginSearchDirs": ["."],
+ "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
+}
.vscode/settings.json
@@ -0,0 +1,22 @@
+ "workbench.colorCustomizations": {
+ "activityBar.activeBackground": "#2f7c47",
+ "activityBar.background": "#2f7c47",
+ "activityBar.foreground": "#e7e7e7",
+ "activityBar.inactiveForeground": "#e7e7e799",
+ "activityBarBadge.background": "#422c74",
+ "activityBarBadge.foreground": "#e7e7e7",
+ "commandCenter.border": "#e7e7e799",
+ "sash.hoverBorder": "#2f7c47",
+ "statusBar.background": "#215732",
+ "statusBar.foreground": "#e7e7e7",
+ "statusBarItem.hoverBackground": "#2f7c47",
+ "statusBarItem.remoteBackground": "#215732",
+ "statusBarItem.remoteForeground": "#e7e7e7",
+ "titleBar.activeBackground": "#215732",
+ "titleBar.activeForeground": "#e7e7e7",
+ "titleBar.inactiveBackground": "#21573299",
+ "titleBar.inactiveForeground": "#e7e7e799"
+ "peacock.color": "#215732"
0 commit comments