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.
2 parents 22d0ed2 + 71721aa commit ce1045eCopy full SHA for ce1045e
.eslintignore
@@ -0,0 +1 @@
1
+dist/
.eslintrc.json
@@ -0,0 +1,19 @@
+{
2
+ "env": {
3
+ "browser": true,
4
+ "es6": true
5
+ },
6
+ "extends": [
7
+ "standard"
8
+ ],
9
+ "globals": {
10
+ "Atomics": "readonly",
11
+ "SharedArrayBuffer": "readonly"
12
13
+ "parserOptions": {
14
+ "ecmaVersion": 2018,
15
+ "sourceType": "module"
16
17
+ "rules": {
18
+ }
19
+}
package.json
@@ -7,7 +7,8 @@
"start": "gulp",
"docs": "jsdoc -c jsdoc.conf.json --readme README.md --destination dist/api",
"test:size": "bundlesize",
- "test": "jest ./test/test.js || true"
+ "test": "jest ./test/test.js || true",
+ "lint": "eslint ."
},
"bundlesize": [
{
0 commit comments