| 123456789101112131415161718192021222324252627 |
- import typescriptEslint from "typescript-eslint";
- export default [{
- files: ["**/*.ts"],
- }, {
- plugins: {
- "@typescript-eslint": typescriptEslint.plugin,
- },
- languageOptions: {
- parser: typescriptEslint.parser,
- ecmaVersion: 2022,
- sourceType: "module",
- },
- rules: {
- "@typescript-eslint/naming-convention": ["warn", {
- selector: "import",
- format: ["camelCase", "PascalCase"],
- }],
- curly: "warn",
- eqeqeq: "warn",
- "no-throw-literal": "warn",
- semi: "warn",
- },
- }];
|