periodicjs.core.data
Version:
Core data is the ORM wrapping component of periodicjs.core.controller that provides database adapters for commonly used databases (ie. mongo, sql, postgres). Adapters provide a standard set of methods and options regardless of the type of database and so
37 lines (36 loc) • 812 B
Plain Text
{
"extends": "eslint:recommended",
"plugins": [],
"parserOptions": {
"ecmaFeatures": {
"ecmaVersion": 6,
"jsx": true
}
},
"ecmaFeatures": {
"ecmaVersion": 6
},
"rules": {
"jsx-quotes": ["error", "prefer-double"],
"indent": ["error", 2],
"quotes": ["error", "single"],
"semi": ["warn", "always"],
"comma-dangle": ["warn", "always"],
"comma-spacing": "warn",
"array-bracket-spacing": "warn",
"object-curly-spacing": ["error", "always"],
"eqeqeq": "warn",
"no-cond-assign": ["warn", "always"],
"no-unused-vars": "warn",
"no-console": "warn",
"brace-style": ["warn", "1tbs"],
"strict": ["error", "safe"]
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
}
}