add more linter warnings

This commit is contained in:
JFH
2021-05-14 23:28:12 +02:00
parent 1bad5b9037
commit 8b82f1b4d5
9 changed files with 29 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
import {fromRollup} from '@web/dev-server-rollup';
import { fromRollup } from '@web/dev-server-rollup';
// eslint-disable-next-line node/no-unpublished-import
import rollupCommonjs from '@rollup/plugin-commonjs';
@@ -7,7 +7,7 @@ const commonjs = fromRollup(rollupCommonjs);
export default {
plugins: [
commonjs({
exclude: ['src', 'dist', 'instrumented']
exclude: [ 'src', 'dist', 'instrumented' ]
})
]
};