mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
25 lines
371 B
Plaintext
25 lines
371 B
Plaintext
{
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"ignorePatterns": [
|
|
"**/*.ts",
|
|
"node_modules",
|
|
"packages/pg",
|
|
"packages/pg-protocol",
|
|
"packages/pg-pool"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
}
|
|
}
|