forked from package-url/packageurl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
144 lines (137 loc) · 4.61 KB
/
eslint.config.js
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
'use strict'
const path = require('node:path')
const {
convertIgnorePatternToMinimatch,
includeIgnoreFile
} = require('@eslint/compat')
const js = require('@eslint/js')
const importXPlugin = require('eslint-plugin-import-x')
const nodePlugin = require('eslint-plugin-n')
const sortDestructureKeysPlugin = require('eslint-plugin-sort-destructure-keys')
const unicornPlugin = require('eslint-plugin-unicorn')
const globals = require('globals')
const constants = require('@socketsecurity/registry/lib/constants')
const { BIOME_JSON, GITIGNORE, LATEST } = constants
const rootPath = __dirname
const biomeConfigPath = path.join(rootPath, BIOME_JSON)
const gitignorePath = path.join(rootPath, GITIGNORE)
const biomeConfig = require(biomeConfigPath)
const nodeGlobalsConfig = Object.fromEntries(
Object.entries(globals.node).map(([k]) => [k, 'readonly'])
)
module.exports = [
includeIgnoreFile(gitignorePath),
{
name: 'Imported biome.json ignore patterns',
ignores: biomeConfig.files.ignore.map(convertIgnorePatternToMinimatch)
},
{
...js.configs.recommended,
...importXPlugin.flatConfigs.recommended,
...nodePlugin.configs['flat/recommended-script'],
languageOptions: {
...js.configs.recommended.languageOptions,
...importXPlugin.flatConfigs.recommended.languageOptions,
...nodePlugin.configs['flat/recommended-script'].languageOptions,
ecmaVersion: LATEST,
globals: {
...js.configs.recommended.languageOptions?.globals,
...importXPlugin.flatConfigs.recommended.languageOptions?.globals,
...nodePlugin.configs['flat/recommended-script'].languageOptions
?.globals,
...nodeGlobalsConfig
},
sourceType: 'script'
},
linterOptions: {
...js.configs.recommended.linterOptions,
...importXPlugin.flatConfigs.recommended.linterOptions,
...nodePlugin.configs['flat/recommended-script'].linterOptions,
reportUnusedDisableDirectives: 'off'
},
plugins: {
...js.configs.recommended.plugins,
...importXPlugin.flatConfigs.recommended.plugins,
...nodePlugin.configs['flat/recommended-script'].plugins,
'sort-destructure-keys': sortDestructureKeysPlugin,
unicorn: unicornPlugin
},
rules: {
...js.configs.recommended.rules,
...importXPlugin.flatConfigs.recommended.rules,
...nodePlugin.configs['flat/recommended-script'].rules,
'import-x/extensions': [
'error',
'never',
{
cjs: 'ignorePackages',
js: 'ignorePackages',
json: 'always',
mjs: 'ignorePackages'
}
],
'import-x/no-named-as-default-member': 'off',
'import-x/no-unresolved': ['error', { commonjs: true }],
'import-x/order': [
'warn',
{
groups: [
'builtin',
'external',
'internal',
['parent', 'sibling', 'index'],
'type'
],
pathGroups: [
{
pattern: '@socket{registry,security}/**',
group: 'internal'
}
],
pathGroupsExcludedImportTypes: ['type'],
'newlines-between': 'always',
alphabetize: {
order: 'asc'
}
}
],
'n/exports-style': ['error', 'module.exports'],
// The n/no-unpublished-bin rule does does not support non-trivial glob
// patterns used in package.json "files" fields. In those cases we simplify
// the glob patterns used.
'n/no-unpublished-bin': 'error',
'n/no-unsupported-features/es-builtins': 'error',
'n/no-unsupported-features/es-syntax': 'error',
'n/no-unsupported-features/node-builtins': [
'error',
{
ignores: ['test', 'test.describe'],
// Lazily access constants.maintainedNodeVersions.
version: constants.maintainedNodeVersions.current
}
],
'n/prefer-node-protocol': 'error',
'unicorn/consistent-function-scoping': 'error',
curly: 'error',
'no-await-in-loop': 'error',
'no-control-regex': 'error',
'no-empty': ['error', { allowEmptyCatch: true }],
'no-new': 'error',
'no-proto': 'error',
'no-undef': 'error',
'no-unused-vars': [
'error',
{
argsIgnorePattern: '^_|^this$',
ignoreRestSiblings: true,
varsIgnorePattern: '^_'
}
],
'no-var': 'error',
'no-warning-comments': ['warn', { terms: ['fixme'] }],
'prefer-const': 'error',
'sort-destructure-keys/sort-destructure-keys': 'error',
'sort-imports': ['error', { ignoreDeclarationSort: true }]
}
}
]