generated from storm-software/monorepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.mjs
More file actions
32 lines (24 loc) · 1.06 KB
/
eslint.config.mjs
File metadata and controls
32 lines (24 loc) · 1.06 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 - Powerlines
This code was released as part of the Powerlines project. Powerlines
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/powerlines.
Website: https://stormsoftware.com
Repository: https://github.com/storm-software/powerlines
Documentation: https://docs.stormsoftware.com/projects/powerlines
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: "powerlines",
typescript: {
typeImports: "off"
},
nx: {
moduleBoundaries: false
}
});