Skip to content

Commit

Permalink
Merge pull request #984 from aeternity/release/v0.8.7
Browse files Browse the repository at this point in the history
Release 0.8.7
  • Loading branch information
davidyuk authored Jul 11, 2019
2 parents 6618f3a + e598cf4 commit 2ed33c8
Show file tree
Hide file tree
Showing 132 changed files with 5,022 additions and 2,537 deletions.
31 changes: 31 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,38 @@ module.exports = {
node: true,
},
extends: [
'plugin:vue-i18n/recommended',
'plugin:vue/recommended',
'@vue/airbnb',
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'vue/array-bracket-spacing': 'error',
'vue/arrow-spacing': 'error',
'vue/block-spacing': 'error',
'vue/brace-style': 'error',
'vue/camelcase': ['error', { properties: 'never' }],
'vue/comma-dangle': ['error', {
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'always-multiline',
}],
'vue/component-name-in-template-casing': 'error',
'vue/eqeqeq': 'error',
'vue/key-spacing': 'error',
'vue/match-component-file-name': 'error',
'vue/no-boolean-default': 'error',
'vue/no-restricted-syntax': 'error',
'vue/object-curly-spacing': ['error', 'always'],
'vue/require-direct-export': 'error',
'vue/space-infix-ops': 'error',
'vue/space-unary-ops': 'error',
'vue/v-on-function-call': 'error',
'vue-i18n/no-dynamic-keys': 'error',
'vue-i18n/no-unused-keys': 'error',
},
parserOptions: {
parser: 'babel-eslint',
Expand All @@ -20,4 +46,9 @@ module.exports = {
jest: true,
},
}],
settings: {
'vue-i18n': {
localeDir: './src/locales/*.json',
},
},
};
4 changes: 2 additions & 2 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.aeternity.base" version="0.8.6" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.aeternity.base" version="0.8.7" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Base æpp</name>
<author href="https://aeternity.com">
aeternity developers
Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin name="cordova-plugin-x-socialsharing" spec="^5.4.5" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.2" />
<plugin name="cordova-plugin-headercolor" spec="^1.0.0" />
<plugin name="cordova-clipboard" spec="github:ihadeed/cordova-clipboard#12dadc710dd2d374f942abe746ae2f828112e934" />
<plugin name="cordova-clipboard" spec="^1.3.0" />
<engine name="android" spec="^8.0.0" />
<engine name="ios" spec="^5.0.0" />
</widget>
1 change: 1 addition & 0 deletions config/storybook/preview-head.html
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300,400,500,600,700&display=swap" rel="stylesheet">
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
3 changes: 2 additions & 1 deletion cypress.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"pluginsFile": "tests/e2e/plugins/index.js",
"userAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.75 Mobile/14E5239e Safari/602.1"
"userAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.75 Mobile/14E5239e Safari/602.1",
"video": false
}
Loading

0 comments on commit 2ed33c8

Please sign in to comment.