Skip to content

Commit

Permalink
Merge pull request #128 from melfore/develop
Browse files Browse the repository at this point in the history
Minor fixes plus deps update
  • Loading branch information
luciob authored Oct 20, 2023
2 parents e5e6a77 + 6aaf970 commit 9db4d0a
Show file tree
Hide file tree
Showing 19 changed files with 5,899 additions and 28,973 deletions.
21 changes: 19 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
{
"extends": ["react-app", "prettier", "plugin:storybook/recommended"],
"plugins": ["prettier", "simple-import-sort"],
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:storybook/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "simple-import-sort"],
"overrides": [
{
"files": ["*.js", "*.jsx", "*.ts", "*.tsx"],
"rules": {
"no-console": ["error", { "allow": ["error", "warn"] }],
"simple-import-sort/imports": [
"error",
{
Expand All @@ -22,5 +34,10 @@
"rules": {
"prettier/prettier": ["error"],
"simple-import-sort/imports": "error"
},
"settings": {
"react": {
"version": "detect"
}
}
}
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
## [1.14.2](https://github.com/melfore/konva-timeline/compare/v1.14.1...v1.14.2) (2023-10-18)


### Bug Fixes

* 🐛 [Timeline] Check valid timezone ([4c21145](https://github.com/melfore/konva-timeline/commit/4c211451266b354a4e94192f27b9b6aef10b2e49))
- 🐛 [Timeline] Check valid timezone ([4c21145](https://github.com/melfore/konva-timeline/commit/4c211451266b354a4e94192f27b9b6aef10b2e49))

## [1.14.1](https://github.com/melfore/konva-timeline/compare/v1.14.0...v1.14.1) (2023-10-17)

Expand Down
4 changes: 0 additions & 4 deletions commitlint.config.js

This file was deleted.

8 changes: 8 additions & 0 deletions commitlint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { UserConfig } from "@commitlint/types";

const configuration: UserConfig = {
extends: ["@commitlint/config-conventional"],
ignores: [(message) => message.startsWith("chore(release)")],
};

export default configuration;
Loading

0 comments on commit 9db4d0a

Please sign in to comment.