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 480915c commit 83125bfCopy full SHA for 83125bf
.eslintrc.json
@@ -0,0 +1,36 @@
1
+{
2
+ "env": {
3
+ "browser": true,
4
+ "es6": true
5
+ },
6
+ "globals": {
7
+ "CodeMirror": true,
8
+ "Config": true,
9
+ "FRAME": true,
10
+ "Mousetrap": true,
11
+ "signals": true,
12
+ "UI": true
13
14
+ "extends": "eslint:recommended",
15
+ "rules": {
16
+ "indent": [
17
+ "error",
18
+ "tab",
19
+ {
20
+ "SwitchCase": 1
21
+ }
22
+ ],
23
+ "linebreak-style": [
24
25
+ "windows"
26
27
+ "quotes": [
28
29
+ "single"
30
31
+ "semi": [
32
33
+ "always"
34
+ ]
35
36
+}
0 commit comments