This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
web/.eslintrc.js

32 lines
437 B
JavaScript
Raw Normal View History

2023-04-30 21:55:56 +01:00
module.exports = {
2023-05-01 21:04:19 +01:00
'env': {
'browser': true,
'es2021': true
},
'extends': 'eslint:recommended',
'overrides': [
],
'parserOptions': {
'ecmaVersion': 'latest'
},
'rules': {
'indent': [
'error',
2
2023-04-30 21:55:56 +01:00
],
2023-05-01 21:04:19 +01:00
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'never'
],
'no-undef': 'off',
}
2023-04-30 21:55:56 +01:00
}