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.
upload-file-backend/.eslintrc

43 lines
906 B

2 years ago
{
"rules": {
"no-console": 0,
"no-underscore-dangle": 0,
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "next"
}
],
"no-use-before-define": [
"error",
{
"variables": false
}
],
"no-multi-str": 0,
"indent": [
"warn",
4,
{
"SwitchCase": 1
}
],
"object-shorthand": "off",
"prefer-destructuring": "off",
"comma-dangle": "off",
"object-curly-newline": "off",
"arrow-parens": "off",
"max-len": "off",
"function-paren-newline": "off"
},
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": [
"airbnb-base"
]
}