mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
24 lines
399 B
Plaintext
24 lines
399 B
Plaintext
{
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"plugin:prettier/recommended",
|
|
"prettier/@typescript-eslint"
|
|
],
|
|
"ignorePatterns": [
|
|
"node_modules",
|
|
"packages/pg-protocol/dist/**/*"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
}
|
|
}
|