mirror of
https://github.com/towfiqi/serpbear
synced 2025-06-26 18:15:54 +00:00
- 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
30 lines
703 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|