diff --git a/.gitignore b/.gitignore index 6769218..f2c50db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,2 @@ node_modules -.env -database.sqlite -uploads -.vercel +uploads \ No newline at end of file diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index b1c7fb5..0000000 --- a/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "semi": true, - "trailingComma": "es5", - "singleQuote": true, - "printWidth": 80, - "tabWidth": 2, - "useTabs": false, - "bracketSpacing": true, - "arrowParens": "avoid", - "endOfLine": "lf" -} diff --git a/eslint.config.mjs b/eslint.config.mjs deleted file mode 100644 index c7eec19..0000000 --- a/eslint.config.mjs +++ /dev/null @@ -1,20 +0,0 @@ -import globals from 'globals'; -import pluginJs from '@eslint/js'; - -export default [ - { - files: ['*.js', '*.mjs'], - rules: { - quotes: ['error', 'single'], - semi: ['error', 'always'], - }, - }, - { - languageOptions: { - globals: { - ...globals.node - }, - }, - ...pluginJs.configs.recommended, - } -]; diff --git a/run.sh b/run.sh deleted file mode 100644 index e520586..0000000 --- a/run.sh +++ /dev/null @@ -1,2 +0,0 @@ -npm run prepare -npm run dev \ No newline at end of file