mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
22 lines
386 B
Plaintext
22 lines
386 B
Plaintext
{
|
|
"plugins": ["node"],
|
|
"extends": ["standard", "eslint:recommended", "plugin:node/recommended"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
"space-before-function-paren": "off",
|
|
"node/no-unpublished-require": [
|
|
"error",
|
|
{
|
|
"allowModules": ["pg"]
|
|
}
|
|
]
|
|
}
|
|
}
|