-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: some wiki content elements are placed in a wrong loc
- Loading branch information
1 parent
4d02d8c
commit 3f60fe2
Showing
5 changed files
with
37 additions
and
40 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,27 @@ | ||
import tsPlugin from "@typescript-eslint/eslint-plugin" | ||
import tsParser from "@typescript-eslint/parser" | ||
|
||
const config = [ | ||
{ | ||
files: ["**/*.ts", "**/*.tsx"], // Target TypeScript files | ||
languageOptions: { | ||
parser: tsParser, | ||
sourceType: "module", | ||
}, | ||
plugins: { | ||
"@typescript-eslint": tsPlugin, | ||
}, | ||
rules: { | ||
...tsPlugin.configs.recommended.rules, | ||
"semi": ["error", "never"], | ||
"quotes": ["error", "single"], | ||
"@typescript-eslint/no-unused-vars": "warn", | ||
'@typescript-eslint/naming-convention': ['error', { | ||
selector: ['variableLike', 'parameterProperty', 'classProperty', 'typeProperty'], | ||
format: ['PascalCase'] | ||
}] | ||
} | ||
} | ||
] | ||
|
||
export default config |
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 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