File size: 873 Bytes
30c32c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
27
28
29
30
31
32
33
module.exports = {
    root: true,
    extends: ['scratch', 'scratch/es6'],
    env: {
        browser: true
    },
    rules: {
        'no-case-declarations': 'off',
        'no-console': 'off',
        'no-shadow': 'off',
        'quotes': 'off',
        'prefer-template': 'warn',
        'linebreak-style': 'off',
        'no-alert': 'off',
        'quote-props': 'off',
        'no-trailing-spaces': 'off',
        'object-curly-spacing': 'off',
        'curly': 'off',
        'operator-linebreak': 'off',
        'one-var': 'off',
        'brace-style': 'off',
        'camelcase': 'off',
        'comma-spacing': 'off',
        'no-negated-condition': 'off',
        // @todo please jg, stop having your formater REMOVE THE SPACES
        'space-before-function-paren': 'off',
        'no-throw-literal': 'off'
    },
    "globals": {
        "vm": true
    },
};