graphviz-builder/lib/.eslintrc.js

25 lines
538 B
JavaScript
Raw Normal View History

2020-05-17 17:17:39 +02:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of graphviz-builder which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
/* eslint-disable */
'use strict';
2020-04-17 15:43:34 +02:00
module.exports = {
env: {
commonjs: true,
2020-05-17 17:17:39 +02:00
es6: true,
node: true
2020-04-17 15:43:34 +02:00
},
2020-05-17 17:17:39 +02:00
extends: [ '@sapphirecode/eslint-config-ts' ],
2020-04-17 15:43:34 +02:00
globals: {
2020-05-17 17:17:39 +02:00
Atomics: 'readonly',
2020-04-17 15:43:34 +02:00
SharedArrayBuffer: 'readonly'
},
2020-05-17 17:17:39 +02:00
parserOptions: { ecmaVersion: 2018 }
};