-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
27 lines (19 loc) · 969 Bytes
/
eslint.config.mjs
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
/* -------------------------------------------------------------------
⚡ Storm Software - Stryke
This code was released as part of the Stryke project. Stryke
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.
Website: https://stormsoftware.com
Repository: https://github.com/storm-software/stryke
Documentation: https://stormsoftware.com/projects/stryke/docs
Contact: https://stormsoftware.com/contact
License: https://stormsoftware.com/projects/stryke/license
------------------------------------------------------------------- */
import { getStormConfig } from "@storm-software/eslint";
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
/** @type {import('eslint-flat-config-utils').FlatConfigComposer } */
const config = getStormConfig({
name: "stryke"
});
export default config;