Skip to content

Commit 65c7bba

Browse files
authored
Release (#30)
2 parents b56b29a + ddbf60e commit 65c7bba

File tree

4 files changed

+90
-22
lines changed

4 files changed

+90
-22
lines changed

package-lock.json

Lines changed: 78 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"@commitlint/cli": "19.2.0",
3636
"@commitlint/config-conventional": "19.1.0",
3737
"@commitlint/types": "19.0.3",
38+
"@flaminc/semantic-release-configs": "1.0.0",
3839
"@types/eslint": "8.56.5",
3940
"@types/node": "20.11.28",
4041
"husky": "9.0.11",
4142
"lint-staged": "15.2.2",
4243
"prettier": "3.2.5",
4344
"rimraf": "5.0.5",
4445
"semantic-release": "23.0.3",
45-
"semantic-release-npm-github-publish": "1.5.5",
4646
"syncpack": "12.3.0",
4747
"typescript": "5.4.2"
4848
},

release.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* @type {import('semantic-release').Options}
33
*/
44
module.exports = {
5-
extends: ['semantic-release-npm-github-publish'],
5+
extends: ['@flaminc/semantic-release-configs/npm-github-publish'],
66
branches: ['main'],
77
}

src/configs/recommended.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export const recommended: ESLintConfig = {
4343
warnOnUnassignedImports: true,
4444
},
4545
],
46+
'unicorn/no-array-reduce': 'off',
47+
'unicorn/no-null': 'off',
48+
'unicorn/prefer-top-level-await': 'off',
49+
'unicorn/prefer-string-replace-all': 'off',
4650
},
4751
overrides: [
4852
{
@@ -63,5 +67,11 @@ export const recommended: ESLintConfig = {
6367
},
6468
},
6569
},
70+
{
71+
files: ['*.js'],
72+
rules: {
73+
'unicorn/prefer-module': 'off',
74+
},
75+
},
6676
],
6777
}

0 commit comments

Comments
 (0)