2 |
3 | Nuxt module playground!
4 |
5 |
6 |
7 |
9 |
--------------------------------------------------------------------------------
/vue-mess-detector-nuxt-devtools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rrd108/vue-mess-detector-nuxt-devtools/HEAD/vue-mess-detector-nuxt-devtools.png
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3 | "extends": [
4 | "config:recommended"
5 | ]
6 | }
7 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./.nuxt/tsconfig.json",
3 | "exclude": [
4 | "dist",
5 | "node_modules",
6 | "playground",
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/test/fixtures/basic/nuxt.config.ts:
--------------------------------------------------------------------------------
1 | import vueMessDetector from '../../../src/module'
2 |
3 | export default defineNuxtConfig({
4 | devtools: {
5 | enabled: true,
6 | },
7 | modules: [vueMessDetector],
8 | })
9 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_size = 2
5 | indent_style = space
6 | end_of_line = lf
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
--------------------------------------------------------------------------------
/playground/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "name": "vue-mess-detector-nuxt-devtools-playground",
4 | "type": "module",
5 | "scripts": {
6 | "dev": "nuxi dev",
7 | "build": "nuxi build",
8 | "generate": "nuxi generate"
9 | },
10 | "dependencies": {
11 | "nuxt": "^3.13.2"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/rpc-types.ts:
--------------------------------------------------------------------------------
1 | export interface AnalysisResult {
2 | output: { info: string }[]
3 | reportOutput: Record