Untitled

 avatar
unknown
plain_text
9 months ago
566 B
2
Indexable
      // General JavaScript rules
      'semi': ['error', 'always'],
      'quotes': ['off'], // Disable the quotes rule or adjust as needed
      'no-console': 'warn',
      'no-unused-vars': ['warn', { 'vars': 'all', 'args': 'after-used', 'ignoreRestSiblings': false }],
      'eqeqeq': ['error', 'always'],
      'curly': 'error',
      'brace-style': ['error', '1tbs'],
      'comma-dangle': ['error', 'always-multiline'],
      'indent': ['error', 2],
      'no-multiple-empty-lines': ['error', { 'max': 1, 'maxEOF': 0 }],
      'eol-last': ['error', 'always'],
Editor is loading...
Leave a Comment