.eslintrc.json 281 字节
Newer Older
F
Fatih Acet 已提交
1
{
2 3 4
  "extends": ["airbnb-base", "prettier"],
  "plugins": ["import", "prettier"],
  "rules": {
A
alpcanaydin 已提交
5
    "no-console": "off",
F
Fatih Acet 已提交
6 7 8 9 10 11 12
    "no-return-await": "off",
    "import/no-unresolved": [
      2,
      {
        "ignore": ["vscode"]
      }
    ],
13 14 15
    "prettier/prettier": ["error"]
  }
}