-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add linter script and fix errors * Apply prettier * Add workflow executing linters * Add working directory for npm ci * Remove unknown working-directory from linting action * Update linting workflow * Fix linting command * Fix NOTICE file * Fix licence years * Fix name in Github workflow * Enable unused variable linting rule * Run prettier * Enable unnecessary espace rule * Add .eslintignore * Adapt path to public folder * Update ignore rules for linters * Lint changes after merging master * Start fixing Readme * Lint changes from merge * Lint master merge * Lint changes after merge with origin/master * Replace renderer with correct file * Lint changes * Lint changes * Run linter * Fix lint error * Add badges to readme * New diagram dialog (#89) * dialog for new diagram, isExecutable to true Co-Authored-By: LaviniaStiliadou <livia_16@live.de> * fix lint * adjust label for canceling dialog --------- Co-authored-by: SharonNaemi <naemi_17@live.de> Co-authored-by: mbeisel <beiselmn@gmail.com> * Fix plugin handling (#87) * fix plugin handling * fix lint * remove useEffect as it overwrites the transformed workflow after opening it * Fix transformation bugs * Fix linting errors * Temporarily add OpenTOSCAUtils to QuantME plugin * Fix codestyle * fix open modal --------- Co-authored-by: LaviniaStiliadou <livia_16@live.de> Co-authored-by: SharonNaemi <naemi_17@live.de> Co-authored-by: mbeisel <beiselmn@gmail.com>
- Loading branch information
1 parent
29a29af
commit 17cc92f
Showing
252 changed files
with
27,727 additions
and
24,162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Check the code style of the Quantum Workflow Modeler | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, synchronize ] | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Node.js dependencies and run linters | ||
run: | | ||
npm ci | ||
npm run lint | ||
working-directory: ./components/bpmn-q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Run all test of the Quantum Workflow Modeler | ||
name: Run Tests | ||
|
||
on: | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
|
||
The source code of this project is licensed under the Apache 2.0 license, found in the LICENSE file in this directory. | ||
|
||
The code of the QuantME Plugin und certain utility functions of the editor are based on and using code from the | ||
QuantME Transformation Framework, licensed under the MIT license and available | ||
under https://github.com/UST-QuAntiL/QuantME-TransformationFramework. | ||
The code of the QuantME Plugin and certain utility functions of the editor are based on and using code from the QuantME Transformation Framework, licensed under the MIT license and available under https://github.com/UST-QuAntiL/QuantME-TransformationFramework. | ||
|
||
The code of the PlanQK Plugin is based on the code of the workflow modeler prototype of the PlanQK Platform. | ||
|
||
Certain components of the editor use and extend the code of the bpmn-js repository, the diagram-js repository and the camunda-modeler | ||
repository of Camunda. The bpmn-js repository is licensed under the bpmn.io license and available in the following GitHub | ||
repository https://github.com/bpmn-io/bpmn-js. The diagram-js repository is licensed under the MIT license, available under | ||
the following link: https://github.com/bpmn-io/diagram-js. The camunda-modeler is licensed under the MIT license and available | ||
under the following link: https://github.com/camunda/camunda-modeler. | ||
Certain components of the editor use and extend the code of the bpmn-js repository, the diagram-js repository and the camunda-modeler repository of Camunda. | ||
The bpmn-js repository is licensed under the bpmn.io license and available in the following GitHub repository https://github.com/bpmn-io/bpmn-js. | ||
The diagram-js repository is licensed under the MIT license, available under the following link: https://github.com/bpmn-io/diagram-js. | ||
The camunda-modeler is licensed under the MIT license and available under the following link: https://github.com/camunda/camunda-modeler. | ||
|
||
Find copies of the third party license in the THIRD_PARTY_LICENSE directory under this directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"commonjs": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"extends": ["eslint:recommended", "plugin:react/recommended"], | ||
"overrides": [], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["react"], | ||
"rules": { | ||
"semi": [2, "always"], | ||
"react/prop-types": "off", | ||
"no-prototype-builtins": "off", | ||
"react/jsx-key": "off" | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.