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 6d86c0c commit 2f57187Copy full SHA for 2f57187
eslint.config.mjs
@@ -12,6 +12,7 @@ export default [
12
{
13
files: ['**/*.mjs'],
14
rules: {
15
+ 'object-shorthand': 'error',
16
'import-x/namespace': 'off',
17
'import-x/no-named-as-default': 'off',
18
'import-x/no-named-as-default-member': 'off',
@@ -39,7 +40,7 @@ export default [
39
40
41
files: ['src/**/*.mjs', 'bin/**/*.mjs'],
42
plugins: {
- jsdoc: jsdoc,
43
+ jsdoc,
44
},
45
languageOptions: {
46
ecmaVersion: 'latest',
src/linter/reporters/index.mjs
@@ -4,6 +4,6 @@ import console from './console.mjs';
4
import github from './github.mjs';
5
6
export default {
7
- console: console,
8
- github: github,
+ console,
+ github,
9
};
0 commit comments