-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
154 lines (141 loc) · 3.11 KB
/
.eslintrc.cjs
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
* This file uses "@jsenv/eslint-config" to configure ESLint
* https://github.com/jsenv/eslint-config#eslint-config----
*/
const {
composeEslintConfig,
eslintConfigBase,
eslintConfigForPrettier,
eslintConfigToPreferExplicitGlobals,
jsenvEslintRules,
jsenvEslintRulesForImport,
} = require("@jsenv/eslint-config")
const eslintConfig = composeEslintConfig(
eslintConfigBase,
// Enables top level await
{
parserOptions: {
ecmaVersion: 2022,
},
},
// Files in this repository are all meant to be executed in Node.js and browsers
// and we want to tell this to ESLint.
{
env: {
"shared-node-browser": true,
},
},
// Reuse jsenv eslint rules
{
rules: {
...jsenvEslintRules,
},
},
// Enable import plugin
{
plugins: ["import"],
settings: {
"import/resolver": {
// Tell ESLint to use the importmap to resolve imports.
// Read more in https://github.com/jsenv/jsenv-node-module-import-map#Configure-vscode-and-eslint-for-importmap
"@jsenv/importmap-eslint-resolver": {
projectDirectoryUrl: __dirname,
importMapFileRelativeUrl: "./node_resolution.importmap",
},
},
},
rules: jsenvEslintRulesForImport,
},
// Enable HTML plugin
{
plugins: ["html"],
settings: {
extensions: [".html"],
},
// .html files are written for browsers
overrides: [
{
files: ["**/*.html"],
env: {
"shared-node-browser": false,
"browser": true,
},
},
],
},
// test files are written for both
{
overrides: [
{
files: ["test/**/*.js"],
env: {
"shared-node-browser": false,
"browser": true,
"node": true,
},
globals: {
__filename: "off",
__dirname: "off",
require: "off",
exports: "off",
},
},
],
},
// .mjs files
{
overrides: [
{
files: ["**/*.mjs"],
env: {
"shared-node-browser": false,
"node": true,
},
globals: {
__filename: "off",
__dirname: "off",
require: "off",
exports: "off",
},
settings: {
"import/resolver": {
"@jsenv/importmap-eslint-resolver": {
node: true,
},
},
},
},
],
},
// .cjs files
{
overrides: [
{
files: ["**/*.cjs"],
env: {
browser: false,
node: true,
commonjs: true,
},
// inside *.cjs files. restore commonJS "globals"
globals: {
__filename: true,
__dirname: true,
require: true,
exports: true,
},
// inside *.cjs files, use commonjs module resolution
settings: {
"import/resolver": {
node: {},
},
},
},
],
},
eslintConfigToPreferExplicitGlobals,
// We are using prettier, disable all eslint rules
// already handled by prettier.
eslintConfigForPrettier,
)
module.exports = eslintConfig