UNPKG

658 BJSONView Raw
1{
2 "parserOptions": {
3 "sourceType": "module",
4 "ecmaVersion": 6,
5 "ecmaFeatures": {
6 "modules": true,
7 "arrowFunctions": true,
8 "blockBindings": true,
9 "destructuring": true,
10 "classes": true
11 }
12 },
13 "rules": {
14 "indent": [
15 "error",
16 2
17 ],
18 "quotes": [
19 2,
20 "single"
21 ],
22 "linebreak-style": [
23 2,
24 "unix"
25 ],
26 "semi": [
27 2,
28 "always"
29 ]
30 },
31 "env": {
32 "es6": true,
33 "browser": true,
34 "jasmine": true,
35 "commonjs": true,
36 "node": true
37 },
38 "globals": {
39 "inject": true,
40 "jasmine": true
41 },
42 "extends": "eslint:recommended"
43}