igo
Version:
Igo is a Node.js Web Framework based on Express
39 lines (38 loc) • 711 B
JSON
{
"env": {
"mocha": true,
"node": true,
"commonjs": true,
"es2021": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2,
{
"ArrayExpression": "first",
"CallExpression": {"arguments": "first"},
"FunctionDeclaration": {"body": 1, "parameters": "first"},
"MemberExpression": 0,
"ObjectExpression": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"no-unused-vars": [
"error",
{ "vars": "all", "args": "after-used", "ignoreRestSiblings": false }
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}