.eslintrc.json 321 字节
Newer Older
K
Kamran Ahmed 已提交
1 2 3 4 5 6
{
  "extends": "airbnb-base",
  "env": {
    "browser": true
  },
  "rules": {
7 8 9 10 11
    "no-console": "off",
    "no-underscore-dangle": "off",
    "no-plusplus": "off",
    "no-cond-assign": "off",
    "func-names": "off",
12 13 14 15 16
    "no-param-reassign": [
      "off"
    ],
    "max-len": "off",
    "no-multi-spaces": "off"
K
Kamran Ahmed 已提交
17 18
  }
}