forked from decentralized-identity/web5-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.cjs
92 lines (91 loc) · 3.01 KB
/
eslint.config.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
const eslint = require('@eslint/js');
const globals = require('globals');
const tsParser = require('@typescript-eslint/parser');
const tsPlugin = require('@typescript-eslint/eslint-plugin');
const mochaPlugin = require('eslint-plugin-mocha');
/** @type {import('eslint').ESLint.ConfigData} */
module.exports = [
eslint.configs.recommended,
mochaPlugin.configs.flat.recommended,
// tsPlugin.configs.flat.recommended, // @typescript-eslint v7.9.0 doesn't have a recommended config yet, v8 alpha build has it, so should be available soon.
{
// extends : ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
languageOptions: {
parser: tsParser,
parserOptions: {
ecmaFeatures: { modules: true },
ecmaVersion: '2022',
project: [
'tests/tsconfig.json'// this is the config that includes both `src` and `tests` directories
]
},
globals: {
...globals.node,
...globals.es2021,
...globals.browser
}
},
plugins: {
'@typescript-eslint': tsPlugin,
'mocha': mochaPlugin
},
files: [
'**/*.ts'
],
// IMPORTANT and confusing: `ignores` only exclude files from the `files` setting.
// To exclude *.js files entirely, you need to have a separate config object altogether. (See another `ignores` below.)
ignores: [
'**/*.d.ts',
],
rules: {
'key-spacing': [
'error',
{
'align': {
'afterColon' : true,
'beforeColon' : true,
'on' : 'colon'
}
}
],
'quotes': [
'error',
'single',
{ 'allowTemplateLiterals': true }
],
'semi' : ['error', 'always'],
'indent' : ['error', 2, { 'SwitchCase': 1 }],
'no-unused-vars' : 'off',
'prefer-const' : 'off',
'@typescript-eslint/no-unused-vars' : [
'error',
{
'vars' : 'all',
'args' : 'after-used',
'ignoreRestSiblings' : true,
'argsIgnorePattern' : '^_',
'varsIgnorePattern' : '^_'
}
],
'no-dupe-class-members' : 'off',
'no-trailing-spaces' : ['error'],
'@typescript-eslint/no-explicit-any' : 'off',
'@typescript-eslint/no-non-null-assertion' : 'off',
'@typescript-eslint/ban-ts-comment' : 'off',
// TODO: Revisit new default mocha rules that were disabled in #579 - https://github.com/TBD54566975/web5-js/issues/580
'mocha/no-exclusive-tests' : 'warn',
'mocha/no-setup-in-describe' : 'off',
'mocha/no-mocha-arrows' : 'off',
'mocha/max-top-level-suites' : 'off',
'mocha/no-identical-title' : 'off',
'mocha/no-pending-tests' : 'off',
'mocha/no-skipped-tests' : 'off',
'mocha/no-sibling-hooks' : 'off',
}
}, {
ignores: [
'**/*.js',
'**/*.cjs',
'**/*.mjs',
],
}];