diff --git a/.eslintrc.js b/.eslintrc.js index 1051afc..3003a06 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,20 +5,18 @@ * Created by Timo Hocker , May 2020 */ +'use strict'; + module.exports = { env: { commonjs: true, - es6: true, - node: true + es6: true, + node: true }, - extends: [ - '@sapphirecode' - ], + extends: [ '@sapphirecode' ], globals: { - Atomics: 'readonly', + Atomics: 'readonly', SharedArrayBuffer: 'readonly' }, - parserOptions: { - ecmaVersion: 2018 - } -} + parserOptions: { ecmaVersion: 2018 } +};