mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-26 05:28:12 +08:00
Disallow snake_case variable names in frontend
This commit is contained in:
@@ -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",
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user