consts/.eslintrc.js

25 lines
461 B
JavaScript
Raw Normal View History

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