UNPKG
@em-cli/shared
Version:
latest (2.1.1)
2.1.1
2.1.0
2.0.0
1.0.2
1.0.1
1.0.0
0.5.4
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.2.1
0.2.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
脚手架工具方法包
@em-cli/shared
/
dist
/
eslint.js
12 lines
(11 loc)
•
287 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
ESLint
}
from
'eslint'
;
/** * 根据指定的eslint配置文件,输出格式化后的代码 */
export
async
function
formate
(
filePath
) {
const
eslint =
new
ESLint
({
fix
:
true
});
const
result =
await
eslint.
lintFiles
(filePath);
await
ESLint
.
outputFixes
(result); }