2019-06-03 03:31:38 +00:00
|
|
|
{
|
|
|
|
"extends": "airbnb-base",
|
|
|
|
"parserOptions": {
|
2019-12-09 04:00:49 +00:00
|
|
|
"parser": "babel-eslint",
|
2019-06-03 03:31:38 +00:00
|
|
|
"sourceType": "script"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"strict": 0,
|
|
|
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
|
|
|
"no-console": 0,
|
2019-12-09 04:00:49 +00:00
|
|
|
"indent": "off",
|
|
|
|
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}],
|
|
|
|
"template-curly-spacing": "off"
|
2019-06-03 03:31:38 +00:00
|
|
|
}
|
|
|
|
}
|