forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-lib-index.js
52 lines (46 loc) · 1.15 KB
/
update-lib-index.js
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
/**
* @author Toru Nagashima
* @copyright 2017 Toru Nagashima. All rights reserved.
* See LICENSE file in root directory for full license.
*/
'use strict'
/*
This script updates `lib/index.js` file from rule's meta data.
*/
const fs = require('fs')
const path = require('path')
const eslint = require('eslint')
const rules = require('./lib/rules')
const configs = require('./lib/configs')
// Update files.
const filePath = path.resolve(__dirname, '../lib/index.js')
const content = `/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
*/
'use strict'
module.exports = {
rules: {
${rules
.map((rule) => `'${rule.name}': require('./rules/${rule.name}')`)
.join(',\n')}
},
configs: {
${configs
.map((config) => `'${config}': require('./configs/${config}')`)
.join(',\n')}
},
processors: {
'.vue': require('./processor')
}
}
`
fs.writeFileSync(filePath, content)
// Format files.
async function format() {
const linter = new eslint.ESLint({ fix: true })
const report = await linter.lintFiles([filePath])
eslint.ESLint.outputFixes(report)
}
format()