Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .eslintrc.cjs

This file was deleted.

12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dist-ssr
*.local

# Editor directories and files
.VSCodeCounter
.VSCodeCounter/
#.vscode
!.vscode/extensions.json
.idea
Expand All @@ -26,14 +26,14 @@ dist-ssr
.cache

# private folder
private
import
private/
import/

# Deprecated
.deprecated
.deprecated/

# Static
static
static/

# Test coverage
coverage
coverage/
10 changes: 6 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'
import storybook from 'eslint-plugin-storybook'
import globals from 'globals'
import tseslint from 'typescript-eslint'

export default tseslint.config(
{ ignores: ['dist', 'static'] },
{ ignores: ['dist', 'static', 'coverage'] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
globals: {
...globals.browser,
},
},
plugins: {
'react-hooks': reactHooks,
Expand Down
Loading