-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π Merge pull request #76 from AssistantNMS/develop
π 0.44.2
- Loading branch information
Showing
460 changed files
with
23,999 additions
and
24,387 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,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 |
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,7 @@ | ||
{ | ||
"trailingComma": "all", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true, | ||
"printWidth": 150 | ||
} |
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,4 @@ | ||
{ | ||
"typescript.preferences.quoteStyle": "single", | ||
"cSpell.enabled": false, | ||
} |
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,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 | ||
} | ||
} | ||
]; |
Oops, something went wrong.