We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 907411e commit 34ec81bCopy full SHA for 34ec81b
.eslintignore
@@ -0,0 +1,2 @@
1
+/docs/build/
2
+/dist/
.eslintrc.js
@@ -0,0 +1,29 @@
+module.exports = {
+ parserOptions: {
3
+ ecmaVersion: 2018,
4
+ sourceType: 'module'
5
+ },
6
+ env: {
7
+ es6: true,
8
+ browser: true,
9
+ node: true
10
11
+ extends: [
12
+ 'standard'
13
+ ],
14
+ plugins: [
15
+ 'svelte3'
16
17
+ overrides: [
18
+ {
19
+ files: ['**/*.svelte'],
20
+ processor: 'svelte3/svelte3',
21
+ rules: {
22
+ 'import/first': 0,
23
+ 'import/no-duplicates': 0,
24
+ 'import/no-mutable-exports': 0,
25
+ 'no-multiple-empty-lines': 0
26
+ }
27
28
+ ]
29
+}
0 commit comments