| 12345678910111213141516171819202122232425262728293031 |
- import js from "@eslint/js";
- export default [
- js.configs.recommended,
- {
- languageOptions: {
- ecmaVersion: 2025,
- sourceType: "module",
- globals: {
- console: "readonly",
- }
- },
- rules: {
- "linebreak-style": [
- "error",
- "unix"
- ],
- "quotes": [
- "error",
- "double"
- ],
- "semi": [
- "error",
- "always"
- ],
- "no-console": [
- "warn"
- ]
- }
- }
- ];
|