imago-sql
Version:
Small library to work with Azure SQL and MySQL via a single interface.
30 lines • 665 B
JSON
{
"extends": "airbnb",
"env": {
"jest": true
},
"rules": {
"import/no-dynamic-require": "warn",
"global-require": "warn",
"linebreak-style": "off",
"max-lines-per-function": 1,
"no-await-in-loop": "off",
"no-cond-assign": [ "error", "except-parens" ],
"no-confusing-arrow": "off",
"no-multiple-empty-lines": [
"error",
{ "max": 1 }
],
"no-restricted-syntax": "off",
"no-param-reassign": "warn",
"no-plusplus": "off",
"no-use-before-define": [
"error",
{
"variables": true,
"functions": false
}
],
"radix": "off"
}
}