Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
44
Frontend-Learner/node_modules/eslint-processor-vue-blocks/dist/index.d.ts
generated
vendored
Normal file
44
Frontend-Learner/node_modules/eslint-processor-vue-blocks/dist/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
import { Linter } from 'eslint';
|
||||
|
||||
interface Options {
|
||||
blocks?: {
|
||||
/**
|
||||
* Create virtual files for each `<style>` block
|
||||
* @default false
|
||||
*/
|
||||
styles?: boolean;
|
||||
/**
|
||||
* Enable custom blocks
|
||||
* Pass an string array to specify custom block types, or `true` to enable all custom blocks
|
||||
* @default false
|
||||
*/
|
||||
customBlocks?: boolean | string[];
|
||||
/**
|
||||
* Create virtual files for each `<template>` block
|
||||
* Generally not recommended, as `eslint-plugin-vue` handles it
|
||||
* @default false
|
||||
*/
|
||||
template?: boolean;
|
||||
/**
|
||||
* Create virtual files for each `<script>` block
|
||||
* Generally not recommended, as `eslint-plugin-vue` handles it
|
||||
* @default false
|
||||
*/
|
||||
script?: boolean;
|
||||
/**
|
||||
* Create virtual files for each `<script setup>` block
|
||||
* Generally not recommended, as `eslint-plugin-vue` handles it
|
||||
* @default false
|
||||
*/
|
||||
scriptSetup?: boolean;
|
||||
};
|
||||
/**
|
||||
* Default language for each block type
|
||||
*
|
||||
* @example { style: 'postcss', i18n: 'json' }
|
||||
*/
|
||||
defaultLanguage?: Record<string, string>;
|
||||
}
|
||||
declare function processor(options?: Options): Linter.Processor;
|
||||
|
||||
export { type Options, processor as default };
|
||||
Loading…
Add table
Add a link
Reference in a new issue