Blame view

.eslintrc.js 311 Bytes
ab5828535   Adhidarma Hadiwinoto   Ready to rock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  module.exports = {
    env: {
      commonjs: true,
      es6: true,
      node: true,
    },
    extends: [
      'airbnb-base',
    ],
    globals: {
      Atomics: 'readonly',
      SharedArrayBuffer: 'readonly',
    },
    parserOptions: {
      ecmaVersion: 2018,
    },
    rules: {
      strict: ['off'],
      indent: ['error', 4]
    },
  };