mirror of
https://github.com/franjsco/tick3t-api
synced 2024-12-22 13:05:47 +01:00
18 lines
254 B
JavaScript
18 lines
254 B
JavaScript
module.exports = {
|
|
env: {
|
|
commonjs: true,
|
|
es6: true,
|
|
node: true,
|
|
},
|
|
extends: 'airbnb-base',
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly',
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
},
|
|
rules: {
|
|
},
|
|
};
|