mirror of
https://github.com/JHUAPL/STIXMODELER_UI.git
synced 2026-01-08 21:08:02 -05:00
22 lines
458 B
JavaScript
22 lines
458 B
JavaScript
import eslint from '@eslint/js';
|
|
import globals from 'globals';
|
|
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default defineConfig(
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
tseslint.configs.stylistic,
|
|
globalIgnores([
|
|
"config/*",
|
|
"dist/*",
|
|
"node_modules/*",
|
|
]),
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser
|
|
},
|
|
},
|
|
}
|
|
); |