Skip to content

Commit

Permalink
chore(#1): fix the lint command
Browse files Browse the repository at this point in the history
- quick fix, it will need to be changed later
- instead of adding an eslint config file we change the lint command
  • Loading branch information
mari1912 committed Jun 24, 2024
1 parent 33c5d95 commit 6b719a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
"build-storybook": "storybook build",
"lint": "eslint **/*.tsx **/*.ts --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
Expand Down
1 change: 0 additions & 1 deletion dashboard/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import './button.css';

interface ButtonProps {
Expand Down

0 comments on commit 6b719a8

Please sign in to comment.