diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 3897265..0000000 --- a/.eslintignore +++ /dev/null @@ -1,13 +0,0 @@ -.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 diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 45450fd..0000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,39 +0,0 @@ -module.exports = { - root: true, - extends: ['eslint:recommended', 'prettier'], - plugins: ['svelte3'], - overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], - parserOptions: { - sourceType: 'module', - ecmaVersion: 2022 - }, - env: { - browser: true, - es2017: true, - node: true - }, - settings: { - 'svelte3/ignore-warnings': (warning) => warning.code.startsWith('a11y-') - }, - rules: { - 'constructor-super': 'error', - 'linebreak-style': ['error', 'unix'], - quotes: ['error', 'single', { avoidEscape: true }], - semi: ['error', 'always'], - 'max-len': ['warn', { code: 132, ignoreComments: true }], - 'no-console': 'warn', - 'no-else-return': ['error', { allowElseIf: false }], - 'no-extra-boolean-cast': 'error', - 'no-extra-bind': 'error', - 'no-implicit-coercion': 'error', - 'no-multi-spaces': 'warn', - 'no-redeclare': 'error', - 'no-self-assign': 'error', - 'no-undef-init': 'error', - 'prefer-template': 'warn', - 'sort-imports': 'off', - 'jsx-a11y/no-autofocus': 'off', - 'jsx-a11y/click-events-have-key-events': 0, - 'a11y-click-events-have-key-events': 0 - } -}; diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 3897265..0000000 --- a/.prettierignore +++ /dev/null @@ -1,13 +0,0 @@ -.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 diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 95d17b4..0000000 --- a/.prettierrc +++ /dev/null @@ -1,10 +0,0 @@ -{ - "useTabs": true, - "singleQuote": true, - "trailingComma": "none", - "printWidth": 100, - "plugins": ["prettier-plugin-svelte"], - "pluginSearchDirs": ["."], - "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }], - "svelteSortOrder": "options-styles-scripts-markup" -}