Initial commit

This commit is contained in:
2023-05-04 15:52:34 +03:00
commit 23d15f1574
75 changed files with 14600 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
'use strict'
const fs = require('fs')
const path = require('path')
const filePath = path.join(process.env.INIT_CWD, '.commitlintrc.json')
const fileConfigObject = {
extends: ['@ivuorinen/commitlint-config']
}
if (!fs.existsSync(filePath)) {
fs.writeFileSync(filePath, JSON.stringify(fileConfigObject, undefined, 2))
}