react-meta-pixel
Version:
Typed wrapper around Facebook Pixel
27 lines (26 loc) • 729 B
JSON
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/no-unused-expressions": "warn",
"prefer-spread": "off",
"prefer-rest-params": "off",
"@typescript-eslint/no-empty-object-type": "warn"
}
}