encoding-helper/.eslintrc.js

25 lines
470 B
JavaScript
Raw Normal View History

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