Skip to content

Commit 543a1eb

Browse files
committed
feat(changeMe): init
0 parents  commit 543a1eb

File tree

6 files changed

+5246
-0
lines changed

6 files changed

+5246
-0
lines changed

.cz-config.js

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
'use strict'
2+
3+
module.exports = {
4+
types: [
5+
{
6+
value: 'WIP',
7+
name: '💪 WIP: Work in progress',
8+
},
9+
{
10+
value: 'feat',
11+
name: '✨ feat: A new feature',
12+
},
13+
{
14+
value: 'fix',
15+
name: '🐞 fix: A bug fix',
16+
},
17+
{
18+
value: 'refactor',
19+
name: '🛠 refactor: A code change that neither fixes a bug nor adds a feature',
20+
},
21+
{
22+
value: 'docs',
23+
name: '📚 docs: Documentation only changes',
24+
},
25+
{
26+
value: 'test',
27+
name: '🏁 test: Add missing tests or correcting existing tests',
28+
},
29+
{
30+
value: 'chore',
31+
name: "🗯 chore: Changes that don't modify src or test files. Such as updating build tasks, package manager",
32+
},
33+
{
34+
value: 'style',
35+
name: '💅 style: Code Style, Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)',
36+
},
37+
{
38+
value: 'revert',
39+
name: '⏪ revert: Revert to a commit',
40+
},
41+
],
42+
43+
scopes: [{ name: 'accounts' }, { name: 'admin' }, { name: 'exampleScope' }, { name: 'changeMe' }],
44+
45+
messages: {
46+
type: "Select the type of change that you're committing:",
47+
scope: '\nDenote the SCOPE of this change (optional):',
48+
// used if allowCustomScopes is true
49+
customScope: 'Denote the SCOPE of this change:',
50+
subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n',
51+
body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
52+
breaking: 'List any BREAKING CHANGES (optional):\n',
53+
footer: 'List any ISSUES CLOSED by this change (optional). E.g.: #1, #2:\n',
54+
confirmCommit: 'Are you sure you want to proceed with the commit above?',
55+
},
56+
57+
allowCustomScopes: true,
58+
allowBreakingChanges: ['feat', 'fix'],
59+
subjectLimit: 100,
60+
}

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
node_modules
2+
.DS_Store
3+
dist
4+
.npmrc
5+
.cache
6+
7+
test/upload-server/static
8+
9+
.local
10+
# local env files
11+
.env.local
12+
.env.*.local
13+
14+
# Log files
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
pnpm-debug.log*
19+
20+
# Editor directories and files
21+
.idea
22+
# .vscode
23+
*.suo
24+
*.ntvs*
25+
*.njsproj
26+
*.sln
27+
*.sw?

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 1.0.0 (2021-07-21)
2+
3+
4+

commitlint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional']
3+
}

0 commit comments

Comments
 (0)