@codersvn/model
Version:
NF Repository is a abstract layer of Sequelize Application, that make application more easy to understand and flexible to maintain.
20 lines (19 loc) • 452 B
Plain Text
{
"parser": "babel-eslint",
"extends": ["standard"],
"plugins": ["babel"],
"rules": {
"key-spacing": 0,
"max-len": [2, 180, 2],
"object-curly-spacing": [2, "always"],
"no-unused-vars": ["error", { "vars": "all" }],
"no-unused-expressions": 0,
"space-after-function-name": 0,
"no-useless-call": 0,
"camelcase": 0,
"space-before-function-paren": 0,
"semi": 0,
"new-cap": 0,
"prefer-const": 1
}
}