Skip to content

Commit

Permalink
disable spell check, linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Oct 17, 2024
1 parent b8d4cfe commit 66bab7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const config = tseslint.config(eslint.configs.recommended, ...tseslint.co
'warn', {
cspell: {
language: 'en-CA,en-US,en-GB',
flagWords: flagWords
flagWords
}
}
],
Expand Down
3 changes: 2 additions & 1 deletion eslint.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// eslint-disable-next-line @eslint-community/eslint-comments/disable-enable-pair
/* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @cspell/spellchecker, @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access */

import eslintCspell from '@cspell/eslint-plugin/recommended'
import eslint from '@eslint/js'
Expand All @@ -15,6 +15,7 @@ import eslintPluginUnicorn from 'eslint-plugin-unicorn'
import * as eslintPluginWoke from 'eslint-plugin-woke'
import * as eslintPluginWriteGoodComments from 'eslint-plugin-write-good-comments'
import tseslint from 'typescript-eslint'

import flagWords from './cspell.flagWords.js'

export const config = tseslint.config(
Expand Down

0 comments on commit 66bab7e

Please sign in to comment.