Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ yarn-error.log*

# docs
engine/docs/*
.vscode/settings.json
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<img src="https://img.shields.io/twitter/follow/wickeditor?style=social&logo=twitter" alt="follow on Twitter"></a>
</p>

<h1>Wick Editor</h1>
# Wick Editor

The Wick Editor is a free and open-source tool for creating games, animations, and everything in-between. It's designed to be the most accessible tool for creating multimedia projects on the web.

Expand Down Expand Up @@ -94,14 +94,12 @@ Wick Editor is under the GNU v3 Public License. See the [LICENSE](LICENSE.md) fo

## Links

* [Wick Editor Site](https://www.wickeditor.com)
* [Wick Editor Community Forum](https://forum.wickeditor.com/)
* [Follow on Twitter](https://twitter.com/wickeditor)
* [Follow on Facebook](https://www.facebook.com/wickeditor/)
- [Wick Editor Site](https://www.wickeditor.com)
- [Wick Editor Community Forum](https://forum.wickeditor.com/)
- [Follow on Twitter](https://twitter.com/wickeditor)
- [Follow on Facebook](https://www.facebook.com/wickeditor/)



## Building and Releasing the Desktop App
## Building and Releasing the Desktop App

Please refer to this Wiki entry for information on our dektop build processes! [https://github.com/Wicklets/wick-editor/wiki/Building-Desktop-Editors-for-Release](https://github.com/Wicklets/wick-editor/wiki/Building-Desktop-Editors-for-Release).

Expand All @@ -121,8 +119,6 @@ If you are familiar with electron-builder, electron-packager, or have experience
<img src="https://www.wickeditor.com/static/media/cosa_logo.9af883a9.png" alt="Clinic for Open Source Arts" height="100px"/>
</a>


## Testing Support From

<a href="https://www.browserstack.com/"><img src=".github/images/browserstack.svg" alt="Browser Stack" width="25%"></a>

37 changes: 37 additions & 0 deletions engine/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"extends": "eslint:recommended",
"globals": {
"Wick": true,
"JSZip": true,
"Base64ArrayBuffer": true,
"convertRange": true,
"Croquis": true,
"floodfill": true,
"HowlerGlobal": true,
"hull": true,
"invert": true,
"isVarName": true,
"$": true,
"jQuery": true,
"lerp": true,
"paper": true,
"potrace": true,
"reserved": true,
"SCWF": true,
"Timestamp": true,
"TWEEN": true
},
"rules": {
"indent": ["error", 4],
"semi": ["error", "always"],
"quotes": ["error", "single"],
"no-console": "warn",
"comma-dangle": ["error", "always-multiline"],
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"keyword-spacing": ["error", { "before": true, "after": true }],
"curly": ["error", "all"],
"no-trailing-spaces": "error",
"space-infix-ops": "error",
"no-param-reassign": [ "error", { "props": true } ]
}
}
Loading