Skip to content

Commit

Permalink
Merge pull request #151 from PrivateAIM/dependabot/npm_and_yarn/devel…
Browse files Browse the repository at this point in the history
…op/eslint-9.4.0

build(deps-dev): bump eslint from 8.57.0 to 9.4.0
  • Loading branch information
DiCanio authored Jun 6, 2024
2 parents 1e2a232 + 488b729 commit a526fe1
Show file tree
Hide file tree
Showing 5 changed files with 628 additions and 512 deletions.
12 changes: 0 additions & 12 deletions .eslintrc

This file was deleted.

27 changes: 27 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import config from "eslint-config-standard";
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default [
...[].concat(config),
eslint.configs.recommended,
...tseslint.configs.recommended,
{
includes: [
"src/**/*.ts",
"commitlint.config.js",
"release.config.js",
"rollup.config.mjs",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.js",
"test/**/*.spec.ts"
],
ignores: [
"**/.*",
"**/dist/*",
"**/*.d.ts",
"node_modules/**/*"
]
}
];
Loading

0 comments on commit a526fe1

Please sign in to comment.