Implemented email verification
This commit is contained in:
@@ -1,3 +1,37 @@
|
||||
{
|
||||
"extends": "next/core-web-vitals"
|
||||
"extends": [
|
||||
"next/core-web-vitals"
|
||||
],
|
||||
"plugins": [
|
||||
"validate-filename"
|
||||
],
|
||||
"rules": {
|
||||
"validate-filename/naming-rules": [
|
||||
"error",
|
||||
{
|
||||
"rules": [
|
||||
{
|
||||
"case": "kebab",
|
||||
"target": "**/components/**",
|
||||
"patterns": "^[a-z0-9-]+.tsx$"
|
||||
},
|
||||
{
|
||||
"case": "kebab",
|
||||
"target": "**/app/**",
|
||||
"patterns": "^(default|page|layout|loading|error|not-found|route|template).(tsx|ts)$"
|
||||
},
|
||||
{
|
||||
"case": "camel",
|
||||
"target": "**/hooks/**",
|
||||
"patterns": "^use"
|
||||
},
|
||||
{
|
||||
"case": "camel",
|
||||
"target": "**/providers/**",
|
||||
"patterns": "^[a-zA-Z]*Provider"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user