[READ-ONLY] Mirror of https://github.com/danielroe/cross-origin-storage. Load shared dependencies from Cross-Origin Storage (COS).
cross-origin-storage
experimental
nuxt
vite
vite-plugin
1// @ts-check
2import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
3
4// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
5export default createConfigForNuxt({
6 features: {
7 // Rules for module authors
8 tooling: true,
9 // Rules for formatting
10 stylistic: true,
11 },
12 dirs: {
13 src: [
14 './playground',
15 ],
16 },
17})
18 .append(
19 // your custom flat config here...
20 )