mirror of
https://github.com/jwetzell/osc-js.git
synced 2026-07-26 10:28:46 +00:00
14 lines
497 B
JavaScript
14 lines
497 B
JavaScript
import globals from 'globals';
|
|
import pluginJs from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
import eslintPluginPrettier from 'eslint-plugin-prettier/recommended';
|
|
|
|
/** @type {import('eslint').Linter.Config[]} */
|
|
export default [
|
|
{ ignores: ['apps/**/*', '**/*.test.js','eslint.config.mjs','**/dist/**/*'] },
|
|
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
eslintPluginPrettier,
|
|
];
|