Skip to content

Commit

Permalink
Merge pull request #88 from VampireChicken12/dev
Browse files Browse the repository at this point in the history
Run format + lint
  • Loading branch information
VampireChicken12 authored Nov 14, 2023
2 parents 022af25 + 598712d commit 2c7e892
Show file tree
Hide file tree
Showing 64 changed files with 13,716 additions and 13,556 deletions.
39 changes: 35 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@
"es6": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:tailwindcss/recommended",
"plugin:prettier/recommended",
"plugin:promise/recommended",
"plugin:perfectionist/recommended-natural"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
Expand All @@ -13,7 +23,7 @@
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"plugins": ["react", "@typescript-eslint", "no-secrets"],
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": ["error"],
Expand All @@ -40,10 +50,31 @@
],
"no-useless-escape": "off",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"]
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"],
"import/no-commonjs": "error",
"import/first": ["error"],
"no-secrets/no-secrets": "error",
"prettier/prettier": [
"error",
{
"useTabs": true,
"semi": true,
"trailingComma": "none",
"arrowParens": "always",
"printWidth": 150
}
],
"import/no-unresolved": "off",
"tailwindcss/no-custom-classname": "off"
},
"globals": {
"chrome": "readonly"
},
"ignorePatterns": ["watch.js", "dist/**"]
"ignorePatterns": ["watch.js", "dist/**"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js"],
"parser": "@typescript-eslint/parser"
}
]
}
310 changes: 118 additions & 192 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading

0 comments on commit 2c7e892

Please sign in to comment.