Skip to content

Commit 5dc8adf

Browse files
committed
Update ESLint config to eslint.config.js
1 parent 1979551 commit 5dc8adf

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.eslintrc.yml

-13
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
### Added
11+
- Add jsdoc-minami dependency
12+
1013
### Changed
1114
- Switch release workflow to use release-action
1215
- Upgrade all workflows versions
16+
- Update ESLint config to eslint.config.js
17+
- Change rimraf task bin path to node_modules/.bin/
18+
- Modify coverage test binary to use local bin
1319

1420
### Removed
1521
- Remove CodeQL analysis GH workflow

eslint.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export default [
2+
{
3+
rules: {
4+
semi: "error",
5+
"prefer-const": "error"
6+
}
7+
}
8+
];

0 commit comments

Comments
 (0)