You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
581 B
20 lines
581 B
{
|
|
"extends": "airbnb-base",
|
|
"parserOptions": {
|
|
"parser": "babel-eslint",
|
|
"sourceType": "script",
|
|
"ecmaVersion": 2020
|
|
},
|
|
"rules": {
|
|
"strict": 0,
|
|
"indent": ["error", "tab"],
|
|
"no-tabs": "off",
|
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
|
"no-console": 0,
|
|
"no-underscore-dangle": 0,
|
|
"prefer-destructuring": "off",
|
|
"template-curly-spacing": "off",
|
|
"object-curly-newline": "off",
|
|
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}],
|
|
}
|
|
}
|