aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: 1c6b45bff4ce52d7794e2b879fa589818a60da4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = {
  env: {
    browser: true,
    es2021: true,
    jest: true,
  },
  extends: [
    'airbnb-base',
  ],
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
  },
  rules: {
    "indent": ["warn", 2],
    "no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
  },
};