Skip to content

Commit

Permalink
release: 1.0.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcoguiec committed May 12, 2024
1 parent 859b744 commit 0d1f267
Show file tree
Hide file tree
Showing 7 changed files with 2,799 additions and 4,109 deletions.
22 changes: 0 additions & 22 deletions .eslintrc.json

This file was deleted.

10 changes: 10 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { ecmascript, vitest } from '@gcoguiec/eslint-config';

export default [
...(await ecmascript()),
...(await vitest({
overrides: {
'vitest/expect-expect': 'off'
}
}))
];
1 change: 1 addition & 0 deletions index.spec.mjs → index.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { expect, describe, it } from 'vitest';
import lint from '@commitlint/lint';

import config from './index.cjs';
Expand Down
7 changes: 0 additions & 7 deletions jest.config.mjs

This file was deleted.

37 changes: 19 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gcoguiec/commitlint-config",
"version": "1.0.8",
"version": "1.0.9",
"description": "gcoguiec's commitlint config",
"author": "Guillaume 'Yugo' Coguiec <[email protected]> (https://github.com/gcoguiec/)",
"license": "BSD-2-Clause",
Expand All @@ -23,39 +23,40 @@
"scripts": {
"fmt": "prettier --write \"./**/*.{js,cjs,json,md}\"",
"fmt:check": "prettier --list-different \"./**/*.{js,cjs,json,md}\"",
"lint": "DEBUG=eslint:cli-engine eslint . --ext .js,.cjs,.mjs",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"lint:conflicts": "npx eslint-config-prettier .eslintrc.cjs",
"precommit": "pnpm lint-staged",
"prepare": "husky install",
"prepare": "husky || true",
"prepush": "pnpm fmt:check",
"pub": "pnpm publish --access public",
"spellcheck": "cspell --config=.cspell.json \"**/*.{md,js,cjs,mjs}\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
"test": "vitest run"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/lint": "^19.0.3",
"@gcoguiec/eslint-config-base": "^1.0.8",
"cspell": "^8.6.0",
"eslint": "^8.57.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/lint": "^19.2.2",
"@gcoguiec/eslint-config": "^1.1.2",
"cspell": "^8.8.1",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-import-x": "^0.5.0",
"eslint-plugin-perfectionist": "^2.10.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"vitest": "^1.6.0"
},
"devEngines": {
"node": ">=21"
"node": ">=22"
},
"volta": {
"node": "21.1.0",
"pnpm": "8.10.2"
"node": "22.1.0",
"pnpm": "9.1.0"
},
"packageManager": "pnpm@8.10.2",
"packageManager": "pnpm@9.1.0",
"pnpm": {
"overrides": {
"semver@<5.7.2": ">=5.7.2",
Expand Down
Loading

0 comments on commit 0d1f267

Please sign in to comment.