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
2 changes: 1 addition & 1 deletion 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
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