forked from optimizely/javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
35 lines (35 loc) · 831 Bytes
/
.eslintrc.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
module.exports = {
env: {
browser: true,
commonjs: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
Promise: 'readonly',
},
parserOptions: {
// Note: The TS compiler determines what syntax is accepted. We're using TS version 4.0.3.
// This seems to correspond to "2020" for this setting.
ecmaVersion: 2020,
sourceType: 'module',
},
overrides: [
{
'files': ['*.ts'],
'rules': {
'@typescript-eslint/explicit-module-boundary-types': ['error']
}
}
],
rules: {
'no-prototype-builtins': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-empty-function': 'off',
},
};