2019-06-03 03:31:38 +00:00
|
|
|
{
|
|
|
|
"extends": "airbnb-base",
|
|
|
|
"parserOptions": {
|
2021-11-20 22:59:15 +00:00
|
|
|
"parser": "@babel/eslint-parser",
|
2019-06-03 03:31:38 +00:00
|
|
|
"sourceType": "script"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"strict": 0,
|
2021-04-25 01:08:50 +00:00
|
|
|
"indent": "off",
|
2020-05-14 02:26:05 +00:00
|
|
|
"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",
|
2022-03-26 16:40:20 +00:00
|
|
|
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}]
|
2019-06-03 03:31:38 +00:00
|
|
|
}
|
|
|
|
}
|