summaryrefslogtreecommitdiff
path: root/base/.eslintrc.js
blob: e6cf2032e817af0c0c2902348afc67ed95532d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

module.exports = {
  "rules": {
    "no-unused-vars": ["error", {
      "vars": "local",
      "varsIgnorePattern": "^Cc|Ci|Cu|Cr|EXPORTED_SYMBOLS",
      "args": "none",
    }]
  }
};