We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9eb9c commit 3b69d62Copy full SHA for 3b69d62
.eslintrc.js
@@ -0,0 +1,33 @@
1
+module.exports = {
2
+ "env": {
3
+ "browser": true,
4
+ "es6": true
5
+ },
6
+ //"extends": "eslint:recommended",
7
+ "globals": {
8
+ "Atomics": "readonly",
9
+ "SharedArrayBuffer": "readonly",
10
+ "$": "readonly"
11
12
+ "parserOptions": {
13
+ "ecmaVersion": 2018,
14
+ "sourceType": "module"
15
16
+ "rules": {
17
+ "indent": [
18
+ "error",
19
+ 4,
20
+ {
21
+ SwitchCase: 1
22
+ }
23
+ ],
24
+ "linebreak-style": [
25
26
+ "unix"
27
28
+ "semi": [
29
30
+ "always"
31
+ ]
32
33
+};
0 commit comments