formatting

This commit is contained in:
Timo Hocker 2020-05-15 16:09:14 +02:00
parent 624001f330
commit 98dc62d8ec

View File

@ -5,20 +5,18 @@
* Created by Timo Hocker <timo@scode.ovh>, May 2020 * Created by Timo Hocker <timo@scode.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 };
}
}