serpbear/.eslintrc.json
towfiqi b2e97b2ebe feat: Adds the Ability to set Search Console Property type via Domain Settings.
- Previously only domain properties worked with SerpBear. This feature adds the ability to add URL properties as well.
- Adds a new field "search_console" in Domain Table.
- Adds a new Search Console option in Domain Settings Modal UI.
- When the  new "This is a URL Property" option is enabled, the exact Property URL should be provided.

closes #50
2024-02-06 23:42:28 +06:00

30 lines
703 B
JSON

{
"extends": ["next/core-web-vitals", "airbnb-base"],
"rules":{
"linebreak-style": 0,
"indent":"off",
"no-undef":"off",
"no-console": "off",
"camelcase":"off",
"object-curly-newline":"off",
"no-use-before-define": "off",
"no-restricted-syntax": "off",
"no-await-in-loop": "off",
"arrow-body-style":"off",
"max-len": ["error", {"code": 150, "ignoreComments": true, "ignoreUrls": true}],
"import/no-extraneous-dependencies": "off",
"no-unused-vars": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"": "never",
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
]
}
}