Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .eslintrc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .release
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
# Changelog

The format is based on [Keep a Changelog](https://keepachangelog.com/).

# CHANGES

### Unreleased

### [0.8.1] - 2024-12-16

- doc(CONTRIBUTORS): added
- dep(eslint): bump to 9.17.0
- dep(joi): bump to 17.3.3

### [0.8.0] - 2024-03-06

- feat(nameserver): added GET_req, GET_res, POST, DELETE
Expand Down Expand Up @@ -50,10 +60,18 @@
- feat: import user & group tests from v2
- add group & permission

[0.1.0]: https://github.com/NicTool/validate/releases/tag/0.1.0
[0.1.1]: https://github.com/NicTool/validate/releases/tag/0.1.1
[0.3.0]: https://github.com/NicTool/validate/releases/tag/0.3.0
[0.4.0]: https://github.com/NicTool/validate/releases/tag/0.4.0
[0.5.0]: https://github.com/NicTool/validate/releases/tag/0.5.0
[0.6.0]: https://github.com/NicTool/validate/releases/tag/0.6.0
[0.6.1]: https://github.com/NicTool/validate/releases/tag/0.6.1
[0.6.3]: https://github.com/NicTool/validate/releases/tag/0.6.3
[0.7.0]: https://github.com/NicTool/validate/releases/tag/0.7.0
[0.7.1]: https://github.com/NicTool/validate/releases/tag/0.7.1
[0.7.2]: https://github.com/NicTool/validate/releases/tag/0.7.2
[0.7.3]: https://github.com/NicTool/validate/releases/tag/0.7.3
[0.7.4]: https://github.com/NicTool/validate/releases/tag/0.7.4
[0.8.0]: https://github.com/NicTool/validate/releases/tag/0.8.0
[0.8.1]: https://github.com/NicTool/validate/releases/tag/v0.8.1
9 changes: 9 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Contributors

This handcrafted artisinal software is brought to you by:

| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/NicTool/validate/commits?author=msimerson">20</a>)|
| :---: |

<sub>this file is generated by [.release](https://github.com/msimerson/.release).
Contribute to this project to get your GitHub profile included here.</sub>
24 changes: 24 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import globals from "globals";
import path from "node:path";
import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});

export default [{
ignores: ["**/package-lock.json"],
}, ...compat.extends("eslint:recommended", "prettier"), {
languageOptions: {
globals: {
...globals.node,
...globals.mocha,
},
},
}];
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nictool/validate",
"version": "0.8.0",
"version": "0.8.1",
"description": "NicTool Object Validation",
"main": "index.js",
"directories": {
Expand Down Expand Up @@ -34,11 +34,14 @@
},
"homepage": "https://github.com/NicTool/validate#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0"
"@eslint/eslintrc": "^3.2.0",
"eslint": "^9.17.0",
"@eslint/js": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0"
},
"dependencies": {
"joi": "^17.12.2",
"joi": "^17.13.3",
"joi-password": "^4.2.0"
}
}
Loading