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,
|
2020-05-14 02:26:05 +00:00
|
|
|
"indent": ["error", "tab"],
|
|
|
|
"no-tabs": "off",
|
2019-06-03 03:31:38 +00:00
|
|
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
|
|
|
"no-console": 0,
|
2020-01-10 21:10:11 +00:00
|
|
|
"no-underscore-dangle": 0,
|
2020-02-12 22:00:32 +00:00
|
|
|
"prefer-destructuring": "off",
|
2019-12-09 23:30:55 +00:00
|
|
|
"template-curly-spacing": "off",
|
2020-01-28 02:05:53 +00:00
|
|
|
"object-curly-newline": "off",
|
2019-12-09 04:00:49 +00:00
|
|
|
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}],
|
2019-06-03 03:31:38 +00:00
|
|
|
}
|
|
|
|
}
|