File size: 473 Bytes
765bc42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "parserOptions": {
        "ecmaVersion": 11
    },
    "extends": [
        "airbnb-base",
        "prettier"
    ],
    "rules": {
        "camelcase": "off",
        "linebreak-style": "off"
    },
    "globals": {
        "axios": "readonly",
        "window": "readonly",
        "browser": "readonly",
        "chrome": "readonly"
    },
    "env": {
        "browser": true,
        "node": false
    },
    "ignorePatterns": [
        "**/vendor/*.js"
    ]
}