-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
109 changed files
with
11,949 additions
and
1,021 deletions.
There are no files selected for viewing
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
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,42 @@ | ||
import tseslint from '@typescript-eslint/eslint-plugin'; | ||
import parser from '@typescript-eslint/parser'; | ||
import imports from 'eslint-plugin-import'; | ||
|
||
export default [ | ||
{ | ||
files: ["src/**/*.{ts,tsx,js,jsx}"], | ||
ignores: ["dist/*", "build/*", "coverage/*", "public/*", ".github/*", "node_modules/*", ".vscode/*"], | ||
languageOptions: { | ||
parser: parser | ||
}, | ||
plugins: { | ||
imports: imports.configs.recommended, | ||
'@typescript-eslint': tseslint | ||
}, | ||
rules: { | ||
"eqeqeq": ["error", "always"], // Enforces the use of === and !== instead of == and != | ||
"indent": ["error", 2], // Enforces a 2-space indentation | ||
"quotes": ["error", "double"], // Enforces the use of double quotes for strings | ||
"no-var": "error", // Disallows the use of var, enforcing let or const instead | ||
"prefer-const": "error", // Prefers the use of const for variables that are never reassigned | ||
"no-undef": "off", // Disables the rule that disallows the use of undeclared variables (TypeScript handles this) | ||
"@typescript-eslint/no-unused-vars": [ "error", { | ||
"args": "none", // Allows unused function parameters. Useful for functions with specific signatures where not all parameters are always used. | ||
"ignoreRestSiblings": true // Allows unused variables that are part of a rest property in object destructuring. Useful for excluding certain properties from an object while using the rest. | ||
}], | ||
"eol-last": ["error", "always"], // Enforces at least one newline at the end of files | ||
"@typescript-eslint/semi": ["error", "always"], // Requires semicolons for TypeScript-specific syntax | ||
"semi": "off", // Disables the general semi rule for TypeScript files | ||
"no-extra-semi": ["error"], // Disallows unnecessary semicolons for TypeScript-specific syntax | ||
"brace-style": "off", // Note: you must disable the base rule as it can report incorrect errors | ||
"curly": ["error", "all"], // Enforces the use of curly braces for all control statements | ||
"@typescript-eslint/brace-style": ["error", "1tbs"], | ||
"no-trailing-spaces": ["error", { // Disallows trailing whitespace at the end of lines | ||
"skipBlankLines": false, // Enforces the rule even on blank lines | ||
"ignoreComments": false // Enforces the rule on lines containing comments | ||
}], | ||
"space-before-blocks": ["error", "always"], // Enforces a space before blocks | ||
"keyword-spacing": ["error", { "before": true, "after": true }] // Enforces spacing before and after keywords | ||
} | ||
} | ||
] |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.