auth-server-helper/lib/.eslintrc.js

24 lines
588 B
JavaScript
Raw Permalink Normal View History

2020-12-03 09:54:27 +01:00
/*
* 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
*/
2020-12-03 10:07:49 +01:00
/* eslint-disable */
2020-12-03 09:54:27 +01:00
module.exports = {
env: {
commonjs: true,
2020-12-03 10:07:49 +01:00
es6: true,
node: true
2020-12-03 09:54:27 +01:00
},
2020-12-03 10:07:49 +01:00
extends: [ '@sapphirecode/eslint-config-ts' ],
2020-12-03 09:54:27 +01:00
globals: {
2020-12-03 10:07:49 +01:00
Atomics: 'readonly',
2020-12-03 09:54:27 +01:00
SharedArrayBuffer: 'readonly'
},
2021-01-05 22:10:41 +01:00
parserOptions: { ecmaVersion: 2018 },
rules: { 'node/no-unpublished-import': 'off' }
2020-12-03 10:07:49 +01:00
};