Disallow snake_case variable names in frontend

This commit is contained in:
Keavon Chambers
2021-08-12 21:43:50 -07:00
parent 35d7fe8860
commit 47af8d9bed
8 changed files with 29 additions and 46 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ module.exports = {
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
camelcase: ["error", { allow: ["^(?:[a-z]+_)*[a-z]+$"] }],
camelcase: ["error", { properties: "always" }],
"prettier-vue/prettier": [
"error",
{