Skip to content

Commit

Permalink
feat: add eslint 9 support (#31)
Browse files Browse the repository at this point in the history
Upgrades eslint to 9.x and bumps a few dev dependencies.
  • Loading branch information
43081j authored Aug 11, 2024
1 parent 3ac2e4e commit 881dbfc
Show file tree
Hide file tree
Showing 4 changed files with 270 additions and 646 deletions.
7 changes: 1 addition & 6 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
const {configs: eslintConfigs} = require('@eslint/js');
const {configs: tseslintConfigs} = require('typescript-eslint');
const pluginRecommended = require('eslint-plugin-eslint-plugin/configs/recommended');
const googleConfig = require('eslint-config-google');

module.exports = [
{
...eslintConfigs.recommended,
...googleConfig,
files: ['src/**/*.ts'],
files: ['src/**/*.ts']
},
{
rules: {
'comma-dangle': ['error', 'never'],
'indent': 'off',
'quote-props': 'off',
'max-len': ['error', {
ignoreTemplateLiterals: true,
ignoreStrings: true
Expand Down
Loading

0 comments on commit 881dbfc

Please sign in to comment.