og/.eslintrc.cjs
2023-08-02 17:17:01 -05:00

29 lines
749 B
JavaScript

module.exports = {
root: true,
extends: ['eslint:recommended', 'prettier', 'plugin:unicorn/recommended'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2022
},
env: {
browser: true,
es2017: true,
node: true
},
plugins: ['unicorn'],
rules: {
'no-var': 'error',
'prefer-const': 'error',
quotes: ['error', 'single', { avoidEscape: true }],
'quote-props': ['error', 'as-needed'],
'no-constant-condition': ['error', { checkLoops: false }],
'no-duplicate-imports': 'error',
'no-inner-declarations': 'off',
'unicorn/prevent-abbreviations': 'off',
'unicorn/prefer-string-replace-all': 'off',
'unicorn/numeric-separators-style': 'off',
'unicorn/template-indent': 'off',
'unicorn/no-nested-ternary': 'off'
}
}