@vladmandic/pilogger
Version:
Simple Logger for NodeJS
36 lines • 799 B
JSON
{
"globals": {},
"env": {
"browser": true,
"commonjs": true,
"node": true,
"es2022": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2022
},
"plugins": [
"@typescript-eslint",
"import",
"json",
"html"
],
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:json/recommended-with-comments",
"plugin:import/typescript"
],
"rules": {
"max-len": [1, 275, 3],
"@typescript-eslint/no-explicit-any": "off",
"import/no-extraneous-dependencies": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"object-curly-newline": "off",
"radix": "off"
}
}