Skip to content

Commit 1c6ed54

Browse files
feat!: migrate to massCode v4 support (#17)
1 parent 81b7160 commit 1c6ed54

File tree

14 files changed

+9246
-3347
lines changed

14 files changed

+9246
-3347
lines changed

.editorconfig

Lines changed: 0 additions & 9 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 35 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Jason Nutter
3+
Copyright (c) 2022 Anton Reshetov
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

commitlint.config.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
rules: {
4+
'type-enum': [
5+
2,
6+
'always',
7+
[
8+
'build',
9+
'chore',
10+
'docs',
11+
'feat',
12+
'fix',
13+
'polish',
14+
'refactor',
15+
'release',
16+
'revert',
17+
'style',
18+
'test',
19+
'types',
20+
],
21+
],
22+
},
23+
}

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import antfu from '@antfu/eslint-config'
2+
3+
export default antfu()

0 commit comments

Comments
 (0)