-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #421 from aws-solutions/release/v2.1.11
Release v2.1.11
- Loading branch information
Showing
48 changed files
with
6,788 additions
and
13,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import pluginVue from 'eslint-plugin-vue' | ||
|
||
export default [ | ||
...pluginVue.configs['flat/recommended'], | ||
{ | ||
files: ["src/**/*.js", "src/**/*.vue"], | ||
ignores: [ | ||
"source/website/src/dist/*.js", | ||
"source/website/src/dist/min/*.js" | ||
], | ||
rules: { | ||
"no-console": "off", | ||
"no-undef": "off", | ||
"vue/require-prop-types": "off", | ||
"vue/attribute-hyphenation": "off", | ||
"vue/valid-v-for": "off", | ||
"vue/max-attributes-per-line": "off", | ||
"vue/html-self-closing": "off", | ||
"vue/require-explicit-emits": "off", | ||
"vue/multi-word-component-names": ["error", { | ||
ignores: [ | ||
"Celebrities", | ||
"Entities", | ||
"Loading", | ||
"Subtitles", | ||
"Transcript", | ||
"Translation", | ||
"Waveform", | ||
"Home", | ||
"Login", | ||
] | ||
}], | ||
"vue/require-valid-default-prop": "off", | ||
"vue/no-deprecated-dollar-listeners-api": "off" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!-- | ||
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<link rel="icon" type="image/png" href="/img/icons/favicon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Content Localization on AWS</title> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but media_indexer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.