lwm2m
Version:
Library for developing servers and client of OMA Lightweight M2M
47 lines (46 loc) • 982 B
Plain Text
{
"env": {
"node": true,
"mocha": true
},
"globals": {
"Promise": true,
"Symbol": true
},
"extends": "eslint:recommended",
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^should$",
"argsIgnorePattern": "^res$"
}
],
"no-tabs": "error",
"indent": [
"error",
2
],
"comma-dangle": [
"error",
"always-multiline"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-sparse-arrays": "off",
"no-invalid-this": "error",
"no-use-before-define": "error",
"handle-callback-err": "error",
"no-buffer-constructor": "error"
}
}