Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
necm1 committed Jul 24, 2024
2 parents 3d28dc7 + 3fab463 commit a2bbd5c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
run: npm install --legacy-peer-deps

- name: Run ESLint
run: npm run lint
run: npx eslint 'src/**/*.ts'

- name: Run Prettier
run: npm run format -- --check
run: npx prettier --check 'src/**/*.ts'

build:
name: Build Project
Expand Down
7 changes: 3 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { ESLint } from 'eslint';

export default new ESLint.Config({
export default {
ignores: ['node_modules', 'dist'],
env: {
browser: true,
es2021: true,
Expand All @@ -22,4 +21,4 @@ export default new ESLint.Config({
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
},
});
};

0 comments on commit a2bbd5c

Please sign in to comment.