snippeteer/lib/.eslintrc.js

25 lines
491 B
JavaScript
Raw Normal View History

2020-03-25 16:45:44 +01:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020
*/
2020-01-15 20:44:53 +01:00
module.exports = {
env: {
commonjs: true,
es6: true,
node: true
},
extends: [
2020-04-15 20:21:00 +02:00
'@scode/eslint-config-ts'
2020-01-15 20:44:53 +01:00
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018
}
}