Revision b9887ca5141bae4a31481f33c3411a0e551b894d authored by ffxbld on 21 March 2017, 15:13:34 UTC, committed by ffxbld on 21 March 2017, 15:13:34 UTC
1 parent 92c934b
Raw File
.eslintrc.js
"use strict";

module.exports = {
  "extends": [
    "../toolkit/.eslintrc.js"
  ],

  "rules": {
    "no-unused-vars": ["error", {
      "vars": "local",
      "varsIgnorePattern": "^Cc|Ci|Cu|Cr|EXPORTED_SYMBOLS",
      "args": "none",
    }]
  }
};
back to top