-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheslint.config.mjs
58 lines (57 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
import playcanvasConfig from '@playcanvas/eslint-config';
import babelParser from '@babel/eslint-parser';
import globals from 'globals';
export default [
...playcanvasConfig,
{
files: ['**/*.js', '**/*.mjs'],
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
parser: babelParser,
parserOptions: {
requireConfigFile: false
},
globals: {
...globals.browser,
...globals.mocha,
...globals.node,
'Jolt': 'readonly',
'$_DEBUG': 'readonly',
'$_VERSION': 'readonly',
'$_JOLT_VERSION': 'readonly'
}
},
rules: {
'import/order': 'off',
'no-eval': 'off',
'no-new-wrappers': 'off',
'import/extensions': [
'error',
'ignorePackages',
{ 'js': 'never' }
],
'jsdoc/check-tag-names': [
'error',
{
'definedTags': [
'defaultValue',
'category',
'group',
'hidden',
'import'
]
}
]
}
},
{
files: ['test/**/*.mjs'],
rules: {
'no-unused-expressions': 'off',
'prefer-arrow-callback': 'off', // Mocha uses function callbacks
'no-var': 'error',
'quotes': ['error', 'single']
}
}
];