Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/ubiquity/ts-template
Browse files Browse the repository at this point in the history
…into development
  • Loading branch information
Keyrxng committed May 13, 2024
2 parents 3d239c8 + bad8429 commit bf59bee
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
{
"selector": "interface",
"format": [
"PascalCase"
"StrictPascalCase"
],
"custom": {
"regex": "^I[A-Z]",
Expand All @@ -89,20 +89,20 @@
"private"
],
"format": [
"camelCase"
"strictCamelCase"
],
"leadingUnderscore": "require"
},
{
"selector": "typeLike",
"format": [
"PascalCase"
"StrictPascalCase"
]
},
{
"selector": "typeParameter",
"format": [
"PascalCase"
"StrictPascalCase"
],
"prefix": [
"T"
Expand All @@ -111,7 +111,7 @@
{
"selector": "variable",
"format": [
"camelCase",
"strictCamelCase",
"UPPER_CASE"
],
"leadingUnderscore": "allow",
Expand All @@ -120,7 +120,7 @@
{
"selector": "variable",
"format": [
"camelCase"
"strictCamelCase"
],
"leadingUnderscore": "allow",
"trailingUnderscore": "allow"
Expand All @@ -138,7 +138,7 @@
"boolean"
],
"format": [
"PascalCase"
"StrictPascalCase"
],
"prefix": [
"is",
Expand All @@ -153,7 +153,7 @@
{
"selector": "variableLike",
"format": [
"camelCase"
"strictCamelCase"
]
},
{
Expand All @@ -162,7 +162,7 @@
"variable"
],
"format": [
"camelCase"
"strictCamelCase"
]
}
]
Expand Down

0 comments on commit bf59bee

Please sign in to comment.