formatting

This commit is contained in:
Timo Hocker 2020-05-15 12:26:51 +02:00
parent cca9c21cb7
commit da04a5175d

View File

@ -5,20 +5,18 @@
* Created by Timo Hocker <timo@sapphirecode.ovh>, May 2020 * Created by Timo Hocker <timo@sapphirecode.ovh>, May 2020
*/ */
'use strict';
module.exports = { module.exports = {
env: { env: {
commonjs: true, commonjs: true,
es6: true, es6: true,
node: true node: true
}, },
extends: [ extends: [ '@sapphirecode' ],
'@sapphirecode'
],
globals: { globals: {
Atomics: 'readonly', Atomics: 'readonly',
SharedArrayBuffer: 'readonly' SharedArrayBuffer: 'readonly'
}, },
parserOptions: { parserOptions: { ecmaVersion: 2018 }
ecmaVersion: 2018 };
}
}