Skip to content

Add ESLint rules for semicolons and double-quotes#5

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/add-eslint-rule-semicolons-again
Draft

Add ESLint rules for semicolons and double-quotes#5
Copilot wants to merge 2 commits intomainfrom
copilot/add-eslint-rule-semicolons-again

Conversation

Copy link

Copilot AI commented Feb 5, 2026

Adds code style enforcement for semicolons and double-quote string literals.

Changes

  • Added semi: ['error', 'always'] to enforce semicolons
  • Added quotes: ['error', 'double'] to enforce double-quotes

Both rules configured in frontend/eslint.config.js:

rules: {
  ...reactHooks.configs.recommended.rules,
  'react-refresh/only-export-components': [
    'warn',
    { allowConstantExport: true },
  ],
  'semi': ['error', 'always'],
  'quotes': ['error', 'double'],
},
Original prompt

Add an ESLint rule to enforce semicolons


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: yortch <4576246+yortch@users.noreply.github.com>
Copilot AI changed the title [WIP] Add ESLint rule to enforce semicolons Add ESLint rules for semicolons and double-quotes Feb 5, 2026
Copilot AI requested a review from yortch February 5, 2026 16:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants