-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathindex.ts
109 lines (93 loc) · 3.04 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import type { Plugin } from 'vite'
import { resolve } from 'node:path'
import { createFilter } from '@rollup/pluginutils'
import type { Options, OutputFixes, ESLint } from './types'
import { name } from '../package.json'
import { checkModule, isVirtualModule, parseRequest, pickESLintOptions, to } from './utils'
export { Options }
export default function eslintPlugin(rawOptions: Options = {}): Plugin {
let eslint: ESLint
let filter: ReturnType<typeof createFilter>
let formatter: ESLint.Formatter['format']
let options: Options
let outputFixes: OutputFixes
// If cache is true, it will save all path.
const fileCache = new Set<string>()
return {
name,
async configResolved(config) {
options = Object.assign<Options, Options>(
{
lintOnStart: false,
include: ['**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx', '**/*.vue', '**/*.svelte'],
exclude: ['**/node_modules/**'],
// Use vite cacheDir as default
cacheLocation: resolve(config.cacheDir, '.eslintcache'),
formatter: 'stylish',
emitWarning: true,
emitError: true,
failOnWarning: false,
failOnError: true,
errorOnUnmatchedPattern: false,
},
rawOptions
)
},
async buildStart() {
const [error, module] = await to(import(options.eslintPath ?? 'eslint'))
if (error) {
this.error('Failed to import ESLint, do you install or configure eslintPath?')
} else {
const eslintOptions = pickESLintOptions(options)
eslint = new module.ESLint(eslintOptions)
outputFixes = module.ESLint.outputFixes
filter = createFilter(options.include, options.exclude)
switch (typeof options.formatter) {
case 'string':
formatter = (await eslint.loadFormatter(options.formatter)).format
break
case 'function':
formatter = options.formatter
default:
break
}
if (options.lintOnStart && options.include) {
this.warn('LintOnStart is turned on, and it will check for all matching files.')
const [error] = await to(
checkModule(this, eslint, options.include, options, formatter, outputFixes)
)
if (error) {
this.error(error.message)
}
}
}
},
async transform(_, id) {
const filePath = parseRequest(id)
const isVirtual = isVirtualModule(filePath)
if (isVirtual && fileCache.has(filePath)) {
fileCache.delete(filePath)
}
if (!filter(filePath) || (await eslint.isPathIgnored(filePath)) || isVirtual) {
return null
}
if (options.cache) {
fileCache.add(filePath)
}
const [error] = await to(
checkModule(
this,
eslint,
options.cache ? Array.from(fileCache) : filePath,
options,
formatter,
outputFixes
)
)
if (error) {
this.error(error.message)
}
return null
},
}
}