mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-09 12:46:10 -05:00
Fix checks command problems
Don't really need same level of linting for the bot
This commit is contained in:
@@ -5,6 +5,7 @@ module.exports = {
|
||||
tsconfigRootDir: __dirname,
|
||||
project: ["./tsconfig.json"],
|
||||
},
|
||||
ignorePatterns: ["discord-bot/**/*"],
|
||||
plugins: ["@typescript-eslint"],
|
||||
extends: [
|
||||
"eslint:recommended",
|
||||
|
||||
@@ -66,6 +66,7 @@
|
||||
|
||||
.combobox-options {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
width: 12rem;
|
||||
margin-top: var(--s-2);
|
||||
background-color: var(--bg-darker);
|
||||
@@ -74,7 +75,6 @@
|
||||
font-size: var(--fonts-sm);
|
||||
padding-block: var(--s-3);
|
||||
padding-inline: 0;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.combobox-options.empty {
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
"scripts": {
|
||||
"dev": "node --experimental-fetch --require ts-node/register --require tsconfig-paths/register index.ts",
|
||||
"commands": "ts-node deploy-commands.ts",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@discordjs/builders": "^0.15.0",
|
||||
|
||||
6
discord-bot/tsconfig.bot.json
Normal file
6
discord-bot/tsconfig.bot.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"isolatedModules": false
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["discord-bot/*"],
|
||||
"compilerOptions": {
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2019"],
|
||||
"types": ["cypress"],
|
||||
|
||||
Reference in New Issue
Block a user