aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: f78dc920c3188a8c5cb7856ae63293198ed8a894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = {
  extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
  parser: '@typescript-eslint/parser',
  plugins: ['@typescript-eslint'],
  rules: {
      "@typescript-eslint/no-non-null-assertion": "off",
      "@typescript-eslint/no-unused-vars": [1, {
          varsIgnorePattern: "^_",
          argsIgnorePattern: "^_",
      }],
      "@typescript-eslint/no-explicit-any": "off",
      "max-len": [2, 100],
      "semi": [2, "always"],
      "comma-dangle": [2, "always-multiline"],
  },
  root: true,
};