Skip to content

Commit 9e06fd2

Browse files
committed
init
1 parent 95d6319 commit 9e06fd2

File tree

6 files changed

+1755
-146
lines changed

6 files changed

+1755
-146
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
import tseslint from "typescript-eslint";
4+
import jsdoc from 'eslint-plugin-jsdoc';
5+
6+
/** @type {import('eslint').Linter.Config[]} */
7+
export default [
8+
{
9+
files: ["**/*.{js,mjs,cjs,ts}"],
10+
languageOptions: { globals: globals.browser },
11+
plugins: { jsdoc },
12+
rules: { "jsdoc/require-description": "warn" },
13+
},
14+
pluginJs.configs.recommended,
15+
...tseslint.configs.recommended,
16+
jsdoc.configs['flat/recommended'],
17+
];

0 commit comments

Comments
 (0)