Skip to content

Commit

Permalink
chore: fix linting in scaffolded project, and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Schilp authored and LarsDenBakker committed Mar 6, 2020
1 parent 7f9747c commit 2acadc9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Expand Up @@ -56,7 +56,7 @@ export class <%= className %> extends LitElement {
render() {
return html`
<main>
<div class="logo">${openWcLogo} </div>
<div class="logo">${openWcLogo}</div>
<h1>My app</h1>
<p>Edit <code>src/MyApp.js</code> and save to reload.</p>
Expand Down
Expand Up @@ -25,6 +25,6 @@ npm init @open-wc

## Tooling configs

For most of the tools, the configuration is in the `package.json` to reduces the amount of files in your project.
For most of the tools, the configuration is in the `package.json` to reduce the amount of files in your project.

If you customize the configuration a lot, you can consider moving them to individual files.
Expand Up @@ -2,7 +2,7 @@ import {
addParameters,
addDecorator,
setCustomElements,
withA11y
withA11y,
} from '@open-wc/demoing-storybook';

addDecorator(withA11y);
Expand All @@ -12,11 +12,11 @@ addParameters({
config: {},
options: {
checks: { 'color-contrast': { options: { noScroll: true } } },
restoreScroll: true
restoreScroll: true,
}
},
docs: {
iframeHeight: '200px'
iframeHeight: '200px',
}
});

Expand Down
Expand Up @@ -20,7 +20,7 @@ npm i <%= tagName %>

## Tooling configs

For most of the tools, the configuration is in the `package.json` to reduces the amount of files in your project.
For most of the tools, the configuration is in the `package.json` to reduce the amount of files in your project.

If you customize the configuration a lot, you can consider moving them to individual files.

Expand Down

0 comments on commit 2acadc9

Please sign in to comment.