Skip to content

Commit

Permalink
πŸ”€ Merge pull request #76 from AssistantNMS/develop
Browse files Browse the repository at this point in the history
πŸ”– 0.44.2
  • Loading branch information
Khaoz-Topsy authored Jul 20, 2024
2 parents e407094 + 8bc52eb commit 538cc12
Show file tree
Hide file tree
Showing 460 changed files with 23,999 additions and 24,387 deletions.
23 changes: 23 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Ignore dot files
.githooks
.github
.storybook
.vscode
.xata

# Ignore build files
build
dist

# Ignore generated
coverage
node_modules

# Ignore assets
docs
public
scripts

# file types
# **/.json
# **/.yml
7 changes: 7 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 150
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"typescript.preferences.quoteStyle": "single",
"cSpell.enabled": false,
}
21 changes: 21 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginReactConfig from "eslint-plugin-react/configs/recommended.js";

export default [
{ files: ["**/*.{ts,tsx}"] },
{ languageOptions: { parserOptions: { ecmaFeatures: { jsx: true } } } },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
pluginReactConfig,
{
rules: {
'react/display-name': "off",
'@typescript-eslint/no-namespace': "off",
'@typescript-eslint/no-var-requires': "off",
'@typescript-eslint/no-explicit-any': "off", // Create React App does not want this on, don't know what is going on
}
}
];
Loading

0 comments on commit 538cc12

Please sign in to comment.