We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f08c8 commit ec6ad0cCopy full SHA for ec6ad0c
site/eslint.config.js
@@ -4,6 +4,7 @@ export default [
4
js.configs.all,
5
{
6
rules: {
7
+ "capitalized-comments": "off",
8
"class-methods-use-this": "off",
9
"guard-for-in": "off",
10
"id-length": "off",
@@ -20,11 +21,12 @@ export default [
20
21
"no-undef": "off",
22
"no-underscore-dangle": "off",
23
"no-useless-assignment": "off",
24
+ "object-shorthand": "off",
25
"one-var": "off",
26
"quotes": ["error", "double"],
27
"semi": ["error", "always"],
28
"sort-vars": "off",
- "sort-keys": "off"
29
+ "sort-keys": "off",
30
}
31
32
];
0 commit comments