We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dddc0ae commit 6f2390aCopy full SHA for 6f2390a
.eslintrc.js
@@ -20,13 +20,13 @@ module.exports = {
20
// NOTE: These rules are frozen and new rules should not be added here.
21
// New changes belong in https://github.com/matrix-org/eslint-plugin-matrix-org/
22
rules: {
23
- "no-var": ["warn"],
24
- "prefer-rest-params": ["warn"],
25
- "prefer-spread": ["warn"],
26
- "one-var": ["warn"],
27
- "padded-blocks": ["warn"],
28
- "no-extend-native": ["warn"],
29
- "camelcase": ["warn"],
+ "no-var": ["error"],
+ "prefer-rest-params": ["error"],
+ "prefer-spread": ["error"],
+ "one-var": ["error"],
+ "padded-blocks": ["error"],
+ "no-extend-native": ["error"],
+ "camelcase": ["error"],
30
"no-multi-spaces": ["error", { "ignoreEOLComments": true }],
31
"space-before-function-paren": ["error", {
32
"anonymous": "never",
0 commit comments