generated from stegripe/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
47 lines (46 loc) · 1.28 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { common, modules, node, prettier, typescript, extend, ignores } from "@stegripe/eslint-config";
import eslintPluginPrettier from "eslint-plugin-prettier";
/** @type {import("eslint").Linter.FlatConfig[]} */
export default [
...common,
...modules,
...node,
...prettier,
...extend(typescript, [
{
rule: "typescript/naming-convention",
option: [
"error",
{
selector: "default",
format: ["camelCase", "PascalCase", "snake_case", "UPPER_CASE"],
leadingUnderscore: "allow",
trailingUnderscore: "forbid"
},
{
selector: "variable",
modifiers: ["destructured"],
format: null
}
]
},
{
rule: "typescript/consistent-type-definitions",
option: ["off"]
},
{
rule: "typescript/no-unsafe-declaration-merging",
option: ["off"]
},
{
rule: "typescript/no-non-null-assertion",
option: ["off"]
}
]),
...ignores,
{
plugins: {
prettier: eslintPluginPrettier
}
}
];