Skip to content

Commit

Permalink
Отключил eslint в некоторых фалах
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur233 committed Sep 26, 2024
1 parent c85e55b commit 6117f27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions init.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const fs = require('fs')

fs.copyFileSync('.env.sample', '.env')
Expand Down
1 change: 1 addition & 0 deletions packages/client/src/app/App.test.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable */
import App from './App'
import { render, screen } from '@testing-library/react'

Expand Down
1 change: 1 addition & 0 deletions packages/server/__tests__/example.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const magic = '🪄'

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const cast = (spell: string, item: any) => {
if (spell.startsWith(magic)) {
return '🐷'
Expand Down

0 comments on commit 6117f27

Please sign in to comment.