Remove last ESLint presence

..

///
This commit is contained in:
Abdón Rodríguez Davila 2018-04-21 12:38:29 +02:00
parent 4858f06b38
commit d4a8b6be17
4 changed files with 7 additions and 11 deletions

View File

@ -78,7 +78,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js', {
scope: Polymer.rootPath,
scope: Polymer.rootPath
});
});
}
@ -94,7 +94,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
font-family: "Roboto", "Noto", sans-serif;
line-height: 1.5;
min-height: 100vh;
background-color: #eeeeee;

View File

@ -8,8 +8,6 @@
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
/* eslint no-console: ["error", { allow: ["info"] }] */
console.info(
'Service worker disabled for development, will be generated at build time.'
'Service Worker disabled for development, will be generated at build time.'
);

View File

@ -8,17 +8,15 @@
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
/* eslint-env node */
module.exports = {
staticFileGlobs: [
'manifest.json',
'src/**/*',
'manifest.json'
],
runtimeCaching: [
{
urlPattern: /\/@webcomponents\/webcomponentsjs\//,
handler: 'fastest'
}
],
]
};