We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce8e08a commit 758a9d2Copy full SHA for 758a9d2
.eslintrc
@@ -28,6 +28,7 @@
28
"no-constant-condition": 0,
29
"no-useless-escape": 0,
30
"no-console": "error",
31
+ "require-yield": 0,
32
"eqeqeq": ["error", "smart"],
33
"spaced-comment": [
34
"warn",
@@ -113,6 +114,12 @@
113
114
"leadingUnderscore": "allow",
115
"trailingUnderscore": "allowSingleOrDouble"
116
},
117
+ {
118
+ "selector": "function",
119
+ "format": ["camelCase", "PascalCase"],
120
+ "leadingUnderscore": "allow",
121
+ "trailingUnderscore": "allowSingleOrDouble"
122
+ },
123
{
124
"selector": "variable",
125
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
0 commit comments