1647e67d1d
Merges the editor's per-workspace Vue ESLint config into the root via @vue/eslint-config-typescript, so a single eslint.config.mjs governs the entire monorepo (JS core, CLI, converter, docs, editor). Drops the per-workspace lint scripts and runs everything through one root `eslint . --cache` invocation; the warm cache lands in .eslintcache (gitignored). Switches to plain eslint-config-prettier (the @vue variant pulls in eslint-plugin-prettier, which surfaces Prettier formatting as lint warnings — Prettier already has its own command). Declares Node and browser globals via the `globals` package so console/process/fetch are recognised across all source. Drops the now-unused @eslint/compat, @vue/eslint-config-prettier, and eslint-plugin-jsdoc devDependencies. Removes the per-workspace lint script and the editor's lint:fix script in favour of a root-level lint:fix command.
12 lines
135 B
Plaintext
12 lines
135 B
Plaintext
# Cache and log files
|
|
.turbo
|
|
.eslintcache
|
|
.DS_Store
|
|
yarn-error.log
|
|
|
|
# Dependencies
|
|
node_modules
|
|
|
|
# Local environment files
|
|
.env*.local
|