Skip to content

Commit ec6ad0c

Browse files
committed
more lint updates
1 parent f5f08c8 commit ec6ad0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/eslint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export default [
44
js.configs.all,
55
{
66
rules: {
7+
"capitalized-comments": "off",
78
"class-methods-use-this": "off",
89
"guard-for-in": "off",
910
"id-length": "off",
@@ -20,11 +21,12 @@ export default [
2021
"no-undef": "off",
2122
"no-underscore-dangle": "off",
2223
"no-useless-assignment": "off",
24+
"object-shorthand": "off",
2325
"one-var": "off",
2426
"quotes": ["error", "double"],
2527
"semi": ["error", "always"],
2628
"sort-vars": "off",
27-
"sort-keys": "off"
29+
"sort-keys": "off",
2830
}
2931
}
3032
];

0 commit comments

Comments
 (0)