Skip to content

Commit

Permalink
feat!: esm only package (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz authored Feb 5, 2025
1 parent b18b667 commit 883eed4
Show file tree
Hide file tree
Showing 25 changed files with 213 additions and 2,429 deletions.
5 changes: 0 additions & 5 deletions .autorc.json

This file was deleted.

82 changes: 82 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import tsParser from '@typescript-eslint/parser';
import prettierConfig from 'eslint-plugin-prettier/recommended';
import globals from 'globals';

delete globals.browser['AudioWorkletGlobalScope '];

/**
* @type {import('eslint').Linter.Config[]}
*/
export default [
{
ignores: ['build/**', 'coverage/**'],
},
eslint.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
{
languageOptions: {
parserOptions: {
project: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
{
files: ['**/*.ts'],
languageOptions: {
parser: tsParser,
globals: {
...globals.browser,
},
},
rules: {
'prettier/prettier': 'warn',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/prefer-for-of': 'error',
'@typescript-eslint/no-for-in-array': 'error',
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
},
],
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/no-unsafe-member-access': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
'@typescript-eslint/no-unsafe-return': 'warn',
'@typescript-eslint/no-unsafe-assignment': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-namespace': 'error',
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'linebreak-style': ['error', 'unix'],
'no-irregular-whitespace': ['error', {skipComments: true}],
'no-alert': 'error',
'prefer-const': 'error',
'no-return-assign': 'error',
'no-useless-call': 'error',
'no-useless-concat': 'error',
'prefer-template': 'error',
'no-unused-vars': 'off',
// "no-undef": "off", // typescript takes care of this for us
'no-unreachable': 'off', // typescript takes care of this for us
},
},
prettierConfig,
{
files: ['**/*.js'],
...tseslint.configs.disableTypeChecked,
},
];
82 changes: 0 additions & 82 deletions eslint.config.mjs

This file was deleted.

Loading

0 comments on commit 883eed4

Please sign in to comment.