-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.js
33 lines (30 loc) · 836 Bytes
/
init.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
const fs = require('fs');
const path = require('path');
const configs = [
{
name: '.eslintrc.js',
content: "module.exports = {extends: '@rellafella'}",
},
{
name: 'prettier.config.js',
content:
"module.exports = require('@rellafella/eslint-config/prettier.config')",
},
{
name: 'stylelint.config.js',
content:
"module.exports = {extends: '@rellafella/eslint-config/stylelint.config.js',ignoreFiles: ['./vendor/**/*']};",
},
];
const createConfigFiles = () => {
configs.forEach((config) => {
const filePath = path.join(process.env.INIT_CWD, `${config.name}`);
if (!fs.existsSync(filePath)) {
fs.writeFile(filePath, config.content, (err) => {
if (err) throw err;
console.log(`📝 Created ./${config.name}`);
});
}
});
};
createConfigFiles();