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
13 changes: 12 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"parser": "babel-eslint",
"rules": {
"strict": 0,
"linebreak-style": [2, "unix"],
"eol-last": 1,
"quotes": [1, "single", "avoid-escape"],
Expand Down Expand Up @@ -40,8 +42,17 @@
"React": true,
"moment": true
},
"plugins": [
"react"
],
"parserOptions": {
"sourceType": "module"
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false,
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"extends": "eslint:recommended",
"ecmaFeatures": {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Layernotes](./readme/banner.png)

v0.4 (beta)
v0.5.0 (beta)

# Layer Notes
Layer Notes is a tool that you can use to easily create Tickets for the Bugtracker Mantis.
Expand Down Expand Up @@ -63,7 +63,7 @@ You can contribute to Layer Notes in several ways:
You can add new features and create a pull request to the tool to make it better.

### Translating the tool
In the folder `./src/_locales` you can find locales. With can use the english main file to translate it to your language.
In the folder `./src/_locales` you can find locales. With can use the english main file to translate it to your language.

## Contributors

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "0.4.0",
"version": "0.5.0",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"shortName": "__MSG_appDescription__",
Expand Down
Loading