forked from google/elements-sk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (41 loc) · 1009 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
36
37
38
39
40
41
// To make use of this eslint config file run:
//
// npm ci
//
// Then install eslint support in your IDE of choice.
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'camelcase': ['off'],
'class-methods-use-this': ['off'],
'import/prefer-default-export': ['off'],
'max-classes-per-file': ['off'],
'max-len': ['off'],
'no-bitwise': ['warn'],
'no-lone-blocks':['off'],
'no-param-reassign': ['off'],
'no-plusplus': ['off'],
'no-restricted-syntax': ['warn'],
'no-return-assign': ['off'],
'no-shadow': ['warn'],
'no-underscore-dangle': ['off'],
'no-use-before-define': ['error', { 'functions': false, 'variables': false }],
'object-shorthand': ['off'],
'prefer-destructuring': ['off'],
'prefer-object-spread': ['off'],
},
};