aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/ujs/public/test/.eslintrc.yml
blob: 06d7dd36ea8ff19488bf9fc9261090c9be85316b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
env:
  browser: true
extends: eslint:recommended
rules:
  no-undef: off
  no-unused-vars: off
  indent: off
  linebreak-style: ['error', 'unix']
  quotes: ['error', 'single']
  semi: ['error', 'never']
  no-shadow: ['error'] # Prevent potential errors
  no-console: 'off'
  # styles
  space-before-function-paren: ['error', 'never']
  space-before-blocks: 'error'
  brace-style: ['error', '1tbs', { allowSingleLine: true }]
  key-spacing: 'error'
  array-bracket-spacing: 'error'
  comma-spacing: 'error'
  comma-dangle: 'off'
  eol-last: 'error'