• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2020 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5module.exports = {
6    "env": {
7        "node": true,
8        "commonjs": true,
9        "es6": true,
10        "mocha": true
11    },
12    "extends": "eslint:recommended",
13    "globals": {
14        "Atomics": "readonly",
15        "SharedArrayBuffer": "readonly"
16    },
17    "parserOptions": {
18        "ecmaVersion": 2018
19    },
20    "rules": {
21    }
22};
23