console-app/.eslintrc.js

25 lines
516 B
JavaScript
Raw Permalink Normal View History

2020-05-05 13:32:40 +02:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of console-app which is released under MIT.
* See file 'LICENSE' for full license details.
2020-05-15 16:53:45 +02:00
* Created by Timo Hocker <timo@scode.ovh>, May 2020
2020-05-05 13:32:40 +02:00
*/
2020-05-15 16:53:45 +02:00
/* eslint-disable */
'use strict';
2020-05-05 11:56:36 +02:00
module.exports = {
env: {
commonjs: true,
2020-05-15 16:53:45 +02:00
es6: true,
node: true
2020-05-05 11:56:36 +02:00
},
2020-05-15 16:53:45 +02:00
extends: [ '@sapphirecode' ],
2020-05-05 11:56:36 +02:00
globals: {
2020-05-15 16:53:45 +02:00
Atomics: 'readonly',
2020-05-05 11:56:36 +02:00
SharedArrayBuffer: 'readonly'
},
2020-05-15 16:53:45 +02:00
parserOptions: { ecmaVersion: 2018 }
};