-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: remove antd and antd icons * fix: further styling fixes * fix: further styling fixes * fix: further styling fixes * fix: broken changelog * fix: further styling fixes * fix: lint * fix: remove testing code * refactor: move lint to prettier * style: run lint * refactor: add react-hooks and tailwind lint * style: run lint * refactor: fix lint issues * style: run lint * chore: fix lint * fix: simplebar import * fix: selected track styling
- Loading branch information
Showing
81 changed files
with
10,342 additions
and
9,541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint', 'prettier', 'react', 'tailwindcss'], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:prettier/recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:react-hooks/recommended', | ||
'plugin:react/recommended', | ||
], | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
node: true, | ||
}, | ||
parserOptions: { | ||
sourceType: 'module', | ||
}, | ||
settings: { | ||
react: { version: 'detect' }, | ||
}, | ||
rules: { | ||
'prettier/prettier': [ | ||
'error', | ||
{}, | ||
{ | ||
usePrettierrc: true, | ||
}, | ||
], | ||
'no-console': 'off', | ||
|
||
'tailwindcss/classnames-order': 'error', | ||
'tailwindcss/enforces-negative-arbitrary-values': 'error', | ||
'tailwindcss/enforces-shorthand': 'error', | ||
'tailwindcss/migration-from-tailwind-2': 'error', | ||
'tailwindcss/no-contradicting-classname': 'error', | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"parser": "typescript", | ||
"endOfLine": "auto" | ||
} |
Oops, something went wrong.