Fix ESLint
ScriptCraft/pipeline/head There was a failure building this commit Details

This commit is contained in:
TheBrokenRail 2020-05-23 13:20:20 -04:00
parent 4e3f8aab30
commit 6b1da9c5a6
1 changed files with 14 additions and 1 deletions

View File

@ -6,6 +6,9 @@
"project": ["./tsconfig.json"],
"sourceType": "module"
},
"env": {
"es2020": true
},
"plugins": [
"@typescript-eslint"
],
@ -43,6 +46,14 @@
"selector": "variable",
"format": ["camelCase", "UPPER_CASE"]
},
{
"selector": "property",
"format": ["camelCase", "UPPER_CASE"]
},
{
"selector": "enumMember",
"format": ["UPPER_CASE"]
},
{
"selector": "parameter",
"format": ["camelCase"]
@ -70,6 +81,8 @@
"@typescript-eslint/dot-notation": "error",
"no-extra-semi": "off",
"@typescript-eslint/no-extra-semi": "error",
"@typescript-eslint/explicit-function-return-type": "error"
"@typescript-eslint/explicit-function-return-type": "error",
"no-dupe-class-members": "off",
"@typescript-eslint/no-dupe-class-members": "error"
}
}