๐Ÿ“ฆ rparrett / ascii_to_binimg

๐Ÿ“„ .eslintrc.js ยท 20 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20module.exports = {
  env: {
    browser: true,
    es2021: true,
  },
  extends: ['airbnb-base', 'prettier'],
  parserOptions: {
    ecmaVersion: 2021,
    sourceType: 'module',
  },
  rules: {
    'no-console': ['warn', { allow: ['error'] }],
    'no-bitwise': 'off',
    'no-param-reassign': ['error', { props: false }],
    'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
    'comma-dangle': 'off',
    'import/prefer-default-export': 'off',
  },
};