- Added components.json for component configuration - Created eslint.config.js for ESLint setup with TypeScript and React - Added index.html as the main entry point - Initialized package.json with dependencies and scripts for development - Included Vite logo SVG in public directory - Created basic App component in src/App.tsx - Added React logo SVG in assets directory - Implemented Button component with variants in src/components/ui/button.tsx - Set up Tailwind CSS in src/index.css - Created utility functions for class names in src/lib/utils.ts - Configured main entry point in src/main.tsx - Added TypeScript environment definitions in vite-env.d.ts - Created tsconfig files for application and node configurations - Configured Vite with React and Tailwind CSS in vite.config.ts
29 lines
734 B
JavaScript
29 lines
734 B
JavaScript
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'
|
|
|
|
export default tseslint.config(
|
|
{ ignores: ['dist'] },
|
|
{
|
|
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
|
files: ['**/*.{ts,tsx}'],
|
|
languageOptions: {
|
|
ecmaVersion: 2020,
|
|
globals: globals.browser,
|
|
},
|
|
plugins: {
|
|
'react-hooks': reactHooks,
|
|
'react-refresh': reactRefresh,
|
|
},
|
|
rules: {
|
|
...reactHooks.configs.recommended.rules,
|
|
'react-refresh/only-export-components': [
|
|
'warn',
|
|
{ allowConstantExport: true },
|
|
],
|
|
},
|
|
},
|
|
)
|