Skip to content

Commit 6db85b0

Browse files
authored
Release 15.1.1 (#170)
* chore: prepare next dev release * feat: some more ESLint rules (#169) ### Developer Checklist (Definition of Done) **Issue** - [ ] All acceptance criteria from the issue are met - [ ] Tested in latest Chrome/Firefox **UI/UX/Vis** - [ ] Requires UI/UX/Vis review - [ ] Reviewer(s) are notified (_tag assignees_) - [ ] Review has occurred (_link to notes_) - [ ] Feedback is included in this PR - [ ] Reviewer(s) approve of concept and design **Code** - [ ] Branch is up-to-date with the branch to be merged with, i.e., develop - [ ] Code is cleaned up and formatted - [ ] Unit tests are written (frontend/backend if applicable) - [ ] Integration tests are written (if applicable) **PR** - [ ] Descriptive title for this pull request is provided (will be used for release notes later) - [ ] Reviewer and assignees are defined - [ ] Add type label (e.g., *bug*, *feature*) to this pull request - [ ] Add release label (e.g., `release: minor`) to this PR following [semver](https://semver.org/) - [ ] The PR is connected to the corresponding issue (via `Closes #...`) - [ ] [Summary of changes](#summary-of-changes) is written ### Summary of changes - ### Screenshots ### Additional notes for the reviewer(s) - Thanks for creating this pull request 🤗 * Prepare release version 15.1.1 --------- Co-authored-by: datavisyn-bot <> Co-authored-by: Michael Pühringer <[email protected]>
2 parents a3ea820 + cf96b82 commit 6db85b0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

config/eslint.config.template.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ module.exports = ({ tsconfigRootDir }) =>
138138
'no-prototype-builtins': 'warn',
139139
'no-minusminus': 'off',
140140
'no-underscore-dangle': 'off',
141+
'no-void': 'warn',
141142
'no-restricted-imports': [
142143
'error',
143144
{
@@ -158,6 +159,7 @@ module.exports = ({ tsconfigRootDir }) =>
158159
},
159160
],
160161
'prefer-arrow-callback': 'warn',
162+
'@typescript-eslint/no-require-imports': 'warn',
161163
'@typescript-eslint/consistent-indexed-object-style': 'off',
162164
'@typescript-eslint/consistent-type-definitions': 'off',
163165
'@typescript-eslint/ban-ts-comment': 'warn',
@@ -226,6 +228,8 @@ module.exports = ({ tsconfigRootDir }) =>
226228
'prefer-spread': 'warn',
227229
// Not required with the new JSX transform
228230
'react/react-in-jsx-scope': 'off',
231+
'react/function-component-definition': 'warn',
232+
'react/no-unstable-nested-components': 'warn',
229233
'react/no-array-index-key': 'warn',
230234
'react/jsx-no-useless-fragment': 'warn',
231235
'react/jsx-pascal-case': 'warn',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "visyn_scripts",
33
"description": "",
4-
"version": "15.1.0",
4+
"version": "15.1.1",
55
"author": {
66
"name": "datavisyn GmbH",
77
"email": "[email protected]",

0 commit comments

Comments
 (0)