Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Feb 20, 2024
1 parent 51d86d3 commit 00f6929
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export const Header = () => {

[Nano Stores]: https://github.com/nanostores/nanostores/

---

<a href="https://evilmartians.com/?utm_source=nanostores">
<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
alt="Sponsored by Evil Martians" width="236" height="54">
</a>
<img src="https://cdn.evilmartians.com/badges/logo-no-label.svg" alt="" width="22" height="16" /> Made in <b><a href="https://evilmartians.com/devtools?utm_source=nanostores-router&utm_campaign=devtools-button&utm_medium=github">Evil Martians</a></b>, product consulting for <b>developer tools</b>.

---
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
},
"eslintConfig": {
"extends": [
"@logux/eslint-config",
"@logux/eslint-config/ts",
"plugin:react-hooks/recommended"
],
"rules": {
Expand Down
12 changes: 6 additions & 6 deletions test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { FC, ReactNode } from 'react'

import './setup.js'
import { STORE_UNMOUNT_DELAY, onMount, atom, map, computed } from 'nanostores'
import { render, act, screen } from '@testing-library/react'
import { equal, notEqual } from 'node:assert'

import { act, render, screen } from '@testing-library/react'
import { delay } from 'nanodelay'
import { test, afterEach } from 'node:test'
import { atom, computed, map, onMount, STORE_UNMOUNT_DELAY } from 'nanostores'
import { equal, notEqual } from 'node:assert'
import { afterEach, test } from 'node:test'
import type { FC, ReactNode } from 'react'
import React from 'react'

import { useStore } from '../index.js'
Expand Down

0 comments on commit 00f6929

Please sign in to comment.