-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.mjs
More file actions
32 lines (24 loc) · 1.09 KB
/
eslint.config.mjs
File metadata and controls
32 lines (24 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* -------------------------------------------------------------------
⚡ Storm Software - Shell Shock
This code was released as part of the Shell Shock project. Shell Shock
is maintained by Storm Software under the Apache-2.0 license, and is
free for commercial and private use. For more information, please visit
our licensing page at https://stormsoftware.com/licenses/projects/shell-shock.
Website: https://stormsoftware.com
Repository: https://github.com/storm-software/shell-shock
Documentation: https://docs.stormsoftware.com/projects/shell-shock
Contact: https://stormsoftware.com/contact
SPDX-License-Identifier: Apache-2.0
------------------------------------------------------------------- */
import { defineConfig } from "@storm-software/eslint";
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
/** @type {import('eslint').Linter.Config[]} */
export default defineConfig({
name: "shell-shock",
nx: {
depsCheck: false
},
tsdoc: {
configFile: "@powerlines/tsdoc/recommended.json"
}
});