auth-server-helper/test/.eslintrc.js
Timo Hocker 1437316519
Some checks failed
continuous-integration/drone/push Build is failing
fix packaging
2021-01-06 12:17:04 +01:00

23 lines
530 B
JavaScript

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