mirror of
https://github.com/brianc/node-postgres.git
synced 2026-02-01 16:47:23 +00:00
* lint: Enable standard rules again * lint: Replace hasOwnProperty(...) call * lint: Remove trailing spaces * lint: Remove spaces within array brackets * lint: Disable quote-props to silence linter * lint: Skip linting on older node versions
20 lines
244 B
Plaintext
20 lines
244 B
Plaintext
{
|
|
"plugins": [
|
|
"node"
|
|
],
|
|
"extends": [
|
|
"standard",
|
|
"eslint:recommended",
|
|
"plugin:node/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"rules": {
|
|
}
|
|
}
|