password-helper/.eslintrc.js
2020-05-06 07:33:05 +02:00

25 lines
484 B
JavaScript

/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of Password-Helper which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@sapphirecode.ovh>, March 2020
*/
module.exports = {
env: {
commonjs: true,
es6: true,
node: true
},
extends: [
'@sapphirecode'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018
}
}