aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: f72fbcc1d923e19151acd366323e9760d1f3ef19 (plain) (blame)
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
{
  "env": {
    "browser": true,
    "es6": true,
    "node": true
  },
  "extends": [
    "@valentineus/eslint-config/typescript"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "ecmaVersion": 2020,
    "project": "tsconfig.json",
    "sourceType": "module",
    "tsconfigRootDir": "."
  },
  "rules": {
    "unicorn/prevent-abbreviations": [
      "off"
    ]
  }
}