Major updates:
- Implemented pure text-to-image generation (removed image references)
- Added Film Stock & Texture Engine for deep realism
- Added 9 new Auteur Style presets with verified camera/lens pairings
- Enhanced Smart Fill with contextual details based on application
- Updated Master System Prompt to Cinematography Edition
- Implemented sensory enhancement for texture, atmosphere, and light
- Verified camera/lens combinations through stress testing
- Updated UI to reflect v3.3 with cleaner interface
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
758 B
JavaScript
29 lines
758 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 { defineConfig, globalIgnores } from 'eslint/config'
|
|
|
|
export default defineConfig([
|
|
globalIgnores(['dist']),
|
|
{
|
|
files: ['**/*.{js,jsx}'],
|
|
extends: [
|
|
js.configs.recommended,
|
|
reactHooks.configs.flat.recommended,
|
|
reactRefresh.configs.vite,
|
|
],
|
|
languageOptions: {
|
|
ecmaVersion: 2020,
|
|
globals: globals.browser,
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
ecmaFeatures: { jsx: true },
|
|
sourceType: 'module',
|
|
},
|
|
},
|
|
rules: {
|
|
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
|
|
},
|
|
},
|
|
])
|