@procube/pino-transmit-http
Version:
A pino browser transmit that send log statements over HTTP
64 lines (63 loc) • 1.5 kB
JavaScript
module.exports = {
"env": {
"es2021": true,
"node": true,
"jest/globals": true
},
"extends": [
"plugin:import/recommended",
"plugin:import/typescript",
"airbnb-base",
"airbnb-typescript/base",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": ["./tsconfig.eslint.json"],
"tsconfigRootDir": __dirname
},
"plugins": ["jest", "@typescript-eslint"],
"rules": {
"eqeqeq": ["error", "smart"],
"no-plusplus": "off",
"no-underscore-dangle": "off",
"import/prefer-default-export": "off",
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"object",
"type"
],
"pathGroups": [
{
"pattern": "@alias/**",
"group": "parent",
"position": "before"
},
],
"alphabetize": {
"order": "asc"
},
"newlines-between": "always"
}
],
"import/extensions": "off"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": { "alwaysTryTypes": true }
}
}
};