Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanslatten committed Jan 21, 2025
1 parent 95d6319 commit 9e06fd2
Show file tree
Hide file tree
Showing 6 changed files with 1,755 additions and 146 deletions.
17 changes: 17 additions & 0 deletions plugins/arcgis/service/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import jsdoc from 'eslint-plugin-jsdoc';

/** @type {import('eslint').Linter.Config[]} */
export default [
{
files: ["**/*.{js,mjs,cjs,ts}"],
languageOptions: { globals: globals.browser },
plugins: { jsdoc },
rules: { "jsdoc/require-description": "warn" },
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
jsdoc.configs['flat/recommended'],
];
Loading

0 comments on commit 9e06fd2

Please sign in to comment.