mirror of
https://github.com/teoxoy/factorio-blueprint-editor.git
synced 2024-12-26 20:54:22 +02:00
22 lines
591 B
JavaScript
22 lines
591 B
JavaScript
import eslint from '@eslint/js'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended, // TODO: try strict & strictTypeChecked
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/ban-ts-comment': 'off', // TODO: remove
|
|
'@typescript-eslint/no-explicit-any': 'off', // TODO: remove
|
|
},
|
|
},
|
|
{
|
|
ignores: [
|
|
'packages/website/dist',
|
|
'packages/editor/src/basis',
|
|
'packages/exporter',
|
|
'functions/corsproxy.js',
|
|
],
|
|
}
|
|
)
|