Skip to content

Commit

Permalink
Merge pull request #677 from kuzzleio/3.2.0-proposal
Browse files Browse the repository at this point in the history
Release 3.2.0
  • Loading branch information
xbill82 authored Apr 30, 2020
2 parents a62be8e + debfc31 commit b479086
Show file tree
Hide file tree
Showing 334 changed files with 20,351 additions and 16,944 deletions.
23 changes: 0 additions & 23 deletions .babelrc

This file was deleted.

57 changes: 0 additions & 57 deletions .electron/main.js

This file was deleted.

60 changes: 30 additions & 30 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
module.exports = {
root: true,
parserOptions: {
sourceType: 'module'

env: {
es6: true,
node: true,
jquery: true
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: [
'standard',
'plugin:vue/recommended'
],
// required to lint *.vue files
plugins: ['html', 'cypress', 'mocha'],
// add your custom rules here

extends: ["plugin:vue/essential", "@vue/prettier"],

rules: {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow functions declarations without space befor the parens
'space-before-function-paren': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-trailing-spaces': 0,
'vue/require-prop-types': 0,
'vue/require-default-prop': 0,
'vue/no-v-html': 0,
'vue/no-side-effects-in-computed-properties': 0
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"require-atomic-updates": "off"
},
env: {
'cypress/globals': true

parserOptions: {
parser: '@typescript-eslint/parser'
},
globals: {
window: false,
localStorage: false,
$: false,
JSON: false
}
}

overrides: [
{
files: ["**/__tests__/*.{j,t}s?(x)"],
env: {
mocha: true
}
}
],

'extends': [
'plugin:vue/essential',
'@vue/prettier',
'@vue/typescript'
]
};
18 changes: 9 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
node_modules/
npm-debug.log
selenium-debug.log
test/unit/coverage
test/e2e/reports
coverage
.nyc_output
tests/e2e/reports
.idea
dump/
docker-compose-custom.yml
bower_components
phantomjsdriver.log
*.sublime-*
dist
.vscode
test/e2e/test-error.png
test/e2e/visual-regression/current
test/e2e/visual-regression/diff
test/e2e/falied-tests/
test/e2e/failed-tests/
test/e2e/videos
tests/e2e/test-error.png
tests/e2e/visual-regression/current
tests/e2e/visual-regression/diff
tests/e2e/falied-tests/
tests/e2e/failed-tests/
tests/e2e/videos
3 changes: 1 addition & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"singleQuote": true,
"semi": false,
"arrowParens": "avoid"
"semi": false
}
21 changes: 21 additions & 0 deletions homepage/index.html → .s3/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- THIS FILE IS ONLY USED ON S3 TO BE ABLE TO REDIRECT TO DIFFERENT VERSION OF THE ADMIN CONSOLE -->
<!DOCTYPE html>
<html>

Expand Down Expand Up @@ -52,6 +53,26 @@
color: #e94e77;
}
</style>
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="static/favicon/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="static/favicon/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="static/favicon/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="static/favicon/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="static/favicon/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="static/favicon/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="static/favicon/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="static/favicon/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="static/favicon/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="static/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="static/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="static/favicon/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="static/favicon/favicon-128.png" sizes="128x128" />
<link rel="shortcut icon" type="image/png" href="static/favicon/favicon-128.png" sizes="128x128" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="static/favicon/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="static/favicon/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="static/favicon/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="static/favicon/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="static/favicon/mstile-310x310.png" />
</head>

<body>
Expand Down
21 changes: 0 additions & 21 deletions .tern-project

This file was deleted.

Loading

0 comments on commit b479086

Please sign in to comment.