Skip to content

Commit

Permalink
Merge pull request #3 from philbates35/prettier-eslintrc
Browse files Browse the repository at this point in the history
Prettier: Don't ignore .eslintrc.cjs
  • Loading branch information
philbates35 authored Jan 18, 2024
2 parents df9dc45 + 5fc6e20 commit e3fcc6b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
};
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# Except...:
!resources/
!.eslintrc.cjs
!package.json
!tsconfig.json
!tsconfig.node.json
Expand Down

0 comments on commit e3fcc6b

Please sign in to comment.