eefd7abf83
Reorganize components into category folders (forms/canvas/overlays/etc.); add the media-editor headless family (timeline, curve-editor, waveform, crop, color picker, etc.); apply perf fixes (O(1) collection lookups, plain-object drag state, gesture-leak teardown, shallowRef color state, rect caching) and replace source `any` with proper types.
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
import { base, compose, imports, stylistic, tests, typescript, vue } from '@robonen/eslint';
|
|
|
|
export default compose(base, typescript, vue, imports, stylistic, {
|
|
name: 'primitives/overrides',
|
|
files: ['**/*.vue'],
|
|
rules: {
|
|
'@stylistic/no-multiple-empty-lines': 'off',
|
|
},
|
|
}, tests);
|