20 lines
274 B
JavaScript
20 lines
274 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es6: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'airbnb-base',
|
||
|
],
|
||
|
globals: {
|
||
|
Atomics: 'readonly',
|
||
|
SharedArrayBuffer: 'readonly',
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018,
|
||
|
sourceType: 'module',
|
||
|
},
|
||
|
rules: {
|
||
|
},
|
||
|
};
|