UNPKG

249 BJavaScriptView Raw
1module.exports = {
2 "extends": "airbnb-base",
3 "plugins": [
4 "import"
5 ],
6 "rules": {
7 "no-underscore-dangle": "off",
8 "no-restricted-syntax": "off",
9 "no-unused-vars": ["error", {
10 argsIgnorePattern: "^unused",
11 }],
12 }
13
14};