Skip to content

Commit

Permalink
Merge pull request #22 from toyokumo/develop
Browse files Browse the repository at this point in the history
v2.1.2
  • Loading branch information
syunta authored Aug 6, 2024
2 parents e2a7a6e + 877183d commit 0205ff2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.1.2](https://github.com/toyokumo/eslint-config/compare/v2.1.1...v2.1.2) (2024-08-06)

### [2.1.1](https://github.com/toyokumo/eslint-config/compare/v2.1.0...v2.1.1) (2024-08-05)

## [2.1.0](https://github.com/toyokumo/eslint-config/compare/v2.0.14...v2.1.0) (2024-08-05)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toyokumo/eslint-config",
"version": "2.1.1",
"version": "2.1.2",
"engines": {
"node": ">=18"
},
Expand Down
7 changes: 2 additions & 5 deletions rules/tailwindcss.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
const config = require('./config-helper.js');
const { FlatCompat } = require('@eslint/eslintrc');
const { fixupPluginRules } = require('@eslint/compat');

const compat = new FlatCompat();
const tailwindcssLint = require('eslint-plugin-tailwindcss');

module.exports = config({
files: ['**/*.ts', '**/*.tsx'],
extends: [...fixupPluginRules(compat.extends('plugin:tailwindcss/recommended'))],
extends: [...tailwindcssLint.configs['flat/recommended']],
rules: {
'tailwindcss/migration-from-tailwind-2': 'off',
},
Expand Down

0 comments on commit 0205ff2

Please sign in to comment.