mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
bcf5a1bc34
refs #9178 * Add eslint deps, remove old lint deps * Add eslint config, remove old lint configs * Config for server and tests are different * Tweaked rules to suit us * Fix linting in codebase - lots of indent changes. * Fix a real broken test
8 lines
130 B
JavaScript
8 lines
130 B
JavaScript
var sqlite3 = require('./sqlite3'),
|
|
mysql = require('./mysql');
|
|
|
|
module.exports = {
|
|
sqlite3: sqlite3,
|
|
mysql: mysql
|
|
};
|