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 10b9321 commit 7664d13Copy full SHA for 7664d13
.eslintrc.json
@@ -19,6 +19,7 @@
19
},
20
"env": {
21
"browser": true,
22
+ "node": true,
23
"es6": true,
24
"jest/globals": true
25
package.json
@@ -25,8 +25,8 @@
],
26
"scripts": {
27
"docs": "typedoc src/index.ts && cp -r dist docs/dist && cp -r examples docs/examples",
28
- "format": "prettier *.json *.js src/* e2e/* examples/* --write && eslint src/* --fix",
29
- "lint": "eslint src/*",
+ "format": "eslint . --fix",
+ "lint": "eslint .",
30
"prepare": "rm -rf dist && rollup -c",
31
"test": "jest src/*",
32
"test:e2e": "jest e2e/*"
0 commit comments